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_3_26.sql 230B

1234567
  1. SELECT account_number,
  2. account_description,
  3. invoice_id
  4. FROM invoice_line_items i LEFT OUTER JOIN general_ledger_accounts g
  5. ON i.account_number = g.account_number
  6. WHERE invoice_id = NULL
  7. ORDER BY g.account_number ASC;