美文网首页
【SQL】10.SQLZOO练习5--SUM and COUN

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

作者: 一曈 | 来源:发表于2017-06-05 13:35 被阅读47次

题目链接: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;

相关文章

网友评论

      本文标题: 【SQL】10.SQLZOO练习5--SUM and COUN

      本文链接:https://www.haomeiwen.com/subject/xfpifxtx.html