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-03.sql 206B

1234567
  1. SELECT account_number, account_description
  2. FROM general_ledger_accounts gl
  3. WHERE NOT EXISTS
  4. (SELECT *
  5. FROM invoice_line_items
  6. WHERE account_number = gl.account_number)
  7. ORDER BY account_number