【SQL】10.SQLZOO练习5--SUM and COUNT

题目链接:https://sqlzoo.net/wiki/SUM_and_COUNT

1
SELECT SUM(population) FROM world
2
select distinct continent from world;
3
select sum(gdp) from world
where continent='Africa';
4
select count(name) from world
where area >= 1000000;
5
select sum(population) from world 
where name in ('Estonia', 'Latvia', 'Lithuania')
6
select continent ,count(name) from world
group by continent;
7
select continent,count(name) from world
where population >= 10000000
group by continent;
8
select continent from world
group by continent 
having sum(population) >= 100000000;
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容