Section 2. Chapter 1
single
Challenge: Total Sales Calculation
Swipe to show menu
Task
Swipe to start coding
Write a SQL query against the sales table that returns two summary metrics in a single row.
- Return exactly one row with two columns:
total_sales— total number of rows in the table, usingCOUNT(*)total_quantity— total sum of thequantitycolumn, usingSUM(quantity)
- Use a single
SELECTstatement with no subqueries - Do not use
WHERE,GROUP BY, or any filtering — aggregate the entire table - Column aliases must match exactly:
total_salesandtotal_quantity
Solution
Everything was clear?
Thanks for your feedback!
Section 2. Chapter 1
single
Ask AI
Ask AI
Ask anything or try one of the suggested questions to begin our chat