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 130B

1234
  1. SELECT account_number,
  2. SUM(line_item_amount) AS line_item_amount_sum
  3. FROM invoice_line_items
  4. GROUP BY account_number WITH ROLLUP;