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.3.sql 128B

1
  1. SELECT product_name, list_price, date_added FROM products WHERE list_price > 500 and list_price < 2000 ORDER BY date_added DESC;