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.

exercise-6.sql 219B

12345
  1. SELECT gl.account_number, account_description, invoice_id
  2. FROM general_ledger_accounts gl LEFT JOIN invoice_line_items li
  3. ON gl.account_number = li.account_number
  4. WHERE li.invoice_id IS NULL
  5. ORDER BY gl.account_number