美文网首页
595. Big Countries

595. Big Countries

作者: wenmingxing | 来源:发表于2018-07-10 23:58 被阅读85次
题目链接:

595. Big Countries

解析:

这道题比较简单,直接使用SELECT ... WHERE就可以得到结果:

题解:
# Write your MySQL query statement below
SELECT name, population, area 
FROM World WHERE population>25000000 OR area>3000000;  

相关文章

网友评论

      本文标题:595. Big Countries

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