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.

exer_5C41.sql 220B

12345678
  1. USE AP;
  2. SELECT 'After 1/1/2018' AS selection_date,
  3. COUNT(*) AS number_of_invoices,
  4. MAX(invoice_total) AS highest_invoice_total,
  5. MIN(invoice_total) AS lowest_invoice_total
  6. FROM invoices
  7. WHERE invoice_date > '2018-01-01';