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

12
  1. SELECT product_code, product_name, list_price, discount_percent FROM products;
  2. SELECT product_code, product_name, list_price, discount_percent FROM products ORDER BY list_price DESC;