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_5C34.sql 223B

12345678
  1. USE AP;
  2. SELECT vendor_name, invoice_number, invoice_total
  3. FROM invoices i JOIN vendors v ON i.vendor_id = v.vendor_id
  4. WHERE invoice_total > ALL
  5. (SELECT invoice_total
  6. FROM invoices
  7. WHERE vendor_id = 34)
  8. ORDER BY vendor_name;