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_3.1.sql 93B

12345
  1. SELECT
  2. COUNT(order_id) AS order_count,
  3. SUM(tax_amount) AS tax_total
  4. FROM
  5. orders;