Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

exercise-02.sql 183B

1234567
  1. SELECT invoice_number, invoice_total
  2. FROM invoices
  3. WHERE payment_total >
  4. (SELECT AVG(payment_total)
  5. FROM invoices
  6. WHERE payment_total > 0)
  7. ORDER BY invoice_total DESC