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.

exercise-3.sql 256B

1234567
  1. SELECT invoice_due_date AS "Due Date",
  2. invoice_total AS "Invoice Total",
  3. invoice_total / 10 AS "10%",
  4. invoice_total * 1.1 AS "Plus 10%"
  5. FROM invoices
  6. WHERE invoice_total >= 500 AND invoice_total <= 1000
  7. ORDER BY invoice_due_date DESC