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-08.sql 150B

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