本文介绍了我该如何解决这个查询的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
每个大陆都显示该大陆和人口数量至少为1000万的国家数量。
世界(姓名,大陆,地区,人口,gdp)
我的答案是:
For each continent show the continent and number of countries with populations of at least 10 million.
world(name, continent, area, population, gdp)
my answer is :
select continent, count(name) from world
group by continent
having Min(population)>=10000000
什么是正确的Anwer?!
编辑:转到GimmeCodezz / Homework部分。 - Marco Bertschi
what is the Correct Anwer?!
moved over to the GimmeCodezz/Homework section. - Marco Bertschi
推荐答案
这篇关于我该如何解决这个查询的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!