You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Exercise_4.3.sql 185B

1234567891011
  1. SELECT
  2. category_name
  3. FROM
  4. categories c
  5. WHERE
  6. NOT EXISTS( SELECT
  7. *
  8. FROM
  9. products p
  10. WHERE
  11. p.category_id = c.category_id);