LeetCode-595 Big Countries

题目链接:595 Big Countries


这是LeetCode通过率最高的一道题(70.5%),也从侧面说明了这道题的简单。
废话不多说,简单翻译一下题目:

给你一个数据库表(表名:World),然后查出area大于3000000或者population大于25000000,并且只显示name,population,area这三个字段

这里说两种解法:
第一种解法就是常规的做法使用or,用时:4198 ms

select name, population, area from World where population > 25000000 or area > 3000000;

第二种解法用union,用时: 3005 ms

select name, population, area from World where population > 25000000 
union 
select name, population, area from World where area > 3000000;

实话讲,我个人对于sql语句并没有特别了解,在此处查到的资料说的是,union连接时可以使每个查询语句都使用自己的索引,因此提高了速度。

以上。

你可能感兴趣的:(算法,mysql)