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.

exec_5C39.sql 161B

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