您的位置:首页 > 数据库

SQLZOO(SUM and COUNT)Writeup

2016-04-25 20:38 639 查看
转载自SQLZOO(SUM and COUNT)Writeup

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 ('France','Germany','Spain')


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


这里不能使用where语句,因为where语句不能与group by 一起使用。

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: