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_5C38.sql 177B

1234567
  1. USE AP;
  2. SELECT invoice_number, invoice_date, invoice_total
  3. FROM invoices JOIN vendors
  4. ON invoices.vendor_id = vendors.vendor_id
  5. WHERE vendor_state = 'CA'
  6. ORDER BY invoice_date;