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.

product_summary.sql 146B

1234
  1. SELECT COUNT(*) AS number_of_products,
  2. MAX(list_price) AS most_expensive_product,
  3. MIN(date_added) AS oldest_product
  4. FROM products