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.

demo-queries-from slides-05.sql 229B

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