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_5C37.sql 189B

123456789
  1. USE AP;
  2. SELECT invoice_number, invoice_date, invoice_total
  3. FROM invoices
  4. WHERE vendor_id IN
  5. (SELECT vendor_id
  6. FROM vendors
  7. WHERE vendor_state = 'CA')
  8. ORDER BY invoice_date;