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-06.sql 122B

123
  1. SELECT account_number, SUM(line_item_amount) AS line_item_sum
  2. FROM invoice_line_items
  3. GROUP BY account_number WITH ROLLUP