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_3.sql 206B

1234567
  1. SELECT invoice_due_date,
  2. invoice_total
  3. FROM invoices
  4. WHERE invoice_total / 10 AS 10%,
  5. invoice_total + 10% AS Plus 10%,
  6. invoice_total BETWEEN 500 AND 1000
  7. ORDER BY invoices_due_date DESC;