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_5C36.sql 158B

12345678
  1. USE AP;
  2. SELECT vendor_id, vendor_name, vendor_state
  3. FROM vendors
  4. WHERE vendor_id NOT IN
  5. (SELECT DISTINCT vendor_id
  6. FROM invoices)
  7. ORDER BY vendor_id;