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

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