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_5C33.sql 216B

1234567
  1. SELECT vendor_name, invoice_number, invoice_total
  2. FROM vendors JOIN invoices
  3. ON vendors.vendor_id = invoices.vendor_id
  4. WHERE invoice_total < ANY
  5. (SELECT invoice_total
  6. FROM invoices
  7. WHERE vendor_id = 115);