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.

demo-queries-from slides-01.sql 162B

123456
  1. SELECT invoice_number, invoice_date, invoice_total
  2. FROM invoices
  3. WHERE invoice_total >
  4. (SELECT AVG(invoice_total)
  5. FROM invoices)
  6. ORDER BY invoice_total;