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_2.6.sql 197B

123456789
  1. SELECT
  2. c.category_name, p.product_id
  3. FROM
  4. categories c
  5. LEFT OUTER JOIN
  6. products p ON c.category_id = p.category_id
  7. WHERE
  8. p.product_id IS NULL
  9. ORDER BY c.category_name DESC;