Section 2. Chapitre 1
single
Challenge: Total Sales Calculation
Glissez pour afficher le menu
Tâche
Glissez pour commencer à coder
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
Tout était clair ?
Merci pour vos commentaires !
Section 2. Chapitre 1
single
Demandez à l'IA
Demandez à l'IA
Posez n'importe quelle question ou essayez l'une des questions suggérées pour commencer notre discussion