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_5C22.sql 276B

123456789101112
  1. After 1/1/2018
  2. 114
  3. 37966.19
  4. 6.00
  5. use ap;
  6. SELECT 'After 1/1/2018' AS selection_date,
  7. COUNT(*) AS number_of_invoices,
  8. MAX(invoice_total) AS highest_invoice_total,
  9. MIN(invoice_total) AS lowest_invoice_total
  10. FROM invoices
  11. WHERE invoice_date > '01/01/2018';