Skip to content

Commit d6264f6

Browse files
committed
made meaning
1 parent c921d74 commit d6264f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: aggregation.sql

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ select sum(population) from city group by population;
2929
select avg(population) from city group by population;
3030

3131
-- count function
32-
select count(name) from city group by name;
32+
select district, count(district) from city group by district;
3333

3434
-- maximum function
3535
select max(population) from city group by population;

0 commit comments

Comments
 (0)