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.1.sql 201B

12345678
  1. SELECT c.category_name as Category,
  2. p.product_name as Product,
  3. p.list_price as Price
  4. FROM
  5. products p
  6. INNER JOIN
  7. categories c ON p.category_id = c.category_id
  8. ORDER BY category_name, product_name ASC;