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_5C35.sql 167B

123456
  1. USE AP;
  2. SELECT v.vendor_id, vendor_name, vendor_state
  3. FROM vendors v LEFT JOIN invoices i
  4. ON v.vendor_id = i.vendor_id
  5. WHERE i.vendor_id IS NULL
  6. ORDER BY v.vendor_id;