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_5C3.sql 152B

1234
  1. SELECT invoice_number, invoice_date, invoice_total
  2. FROM invoices
  3. WHERE invoice_date BETWEEN '2018-06-01' AND '2018-06-30'
  4. ORDER BY invoice_date DESC;