Skip to main content
Journey Uncommon Logo
JourneyUncommon
easySQLGROUP BY and HAVINGSingle-choice MCQ

There is no GROUP BY here. The `amount` column has values 10, 20, 30. What does this query return?

SELECT SUM(amount) FROM sales HAVING SUM(amount) > 100;