We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c921d74 commit d6264f6Copy full SHA for d6264f6
aggregation.sql
@@ -29,7 +29,7 @@ select sum(population) from city group by population;
29
select avg(population) from city group by population;
30
31
-- count function
32
-select count(name) from city group by name;
+select district, count(district) from city group by district;
33
34
-- maximum function
35
select max(population) from city group by population;
0 commit comments