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_5C31.sql 156B

12345678
  1. use ap;
  2. SELECT vendor_id, vendor_name, vendor_state
  3. FROM vendors
  4. WHERE NOT EXISTS
  5. (SELECT *
  6. FROM invoices
  7. WHERE vendor_id = vendors.vendor_id);