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.

exer_5C13.sql 153B

12345
  1. USE AP;
  2. SELECT vendor_name, invoice_number, invoice_total
  3. FROM vendors v LEFT JOIN invoices i
  4. ON v.vendor_id = i.vendor_id
  5. ORDER BY vendor_name ASC