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_5C68.sql 126B

123456
  1. USE ap;
  2. SELECT invoice_number, vendor_name
  3. FROM vendors v, invoices i
  4. WHERE v.vendor_id = i.vendor_id
  5. ORDER BY invoice_number