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_5C70.sql 154B

123456
  1. use ap;
  2. SELECT vendor_name, invoice_number, invoice_total
  3. FROM vendors LEFT JOIN invoices
  4. ON vendors.vendor_id = invoices.vendor_id
  5. ORDER BY vendor_name