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_5C63.sql 217B

12345678
  1. USE AP;
  2. SELECT invoice_number, line_item_amount,
  3. line_item_description
  4. FROM invoices JOIN invoice_line_items line_items
  5. ON invoices.invoice_id = line_items.invoice_id
  6. WHERE account_number = 540
  7. ORDER BY invoice_date