码迷,mamicode.com
首页 > 数据库 > 详细

LeetCode 176. 第二高的薪水(MySQL版)

时间:2019-03-23 22:33:33      阅读:243      评论:0      收藏:0      [点我收藏+]

标签:etc   order   sql查询   mit   pre   distinct   desc   一个   获取   

0.前言

  最近刷LeetCode 刷数据库题目 由于数据库课上的是SQL,而MySQL有许多自己的函数的,怕把刚学会的函数忘记 特在此记录!

1.题目

  

编写一个 SQL 查询,获取 Employee 表中第二高的薪水(Salary) 。

+----+--------+
| Id | Salary |
+----+--------+
| 1  | 100    |
| 2  | 200    |
| 3  | 300    |
+----+--------+
例如上述 Employee 表,SQL查询应该返回 200 作为第二高的薪水。如果不存在第二高的薪水,那么查询应返回 null。

+---------------------+
| SecondHighestSalary |
+---------------------+
| 200                 |
+---------------------+

  

2.用到的知识点

  

limit : limit可以接收两个参数   limit 10 或者 limit 0,10

   前者表示查询显示前10行

  后者表示从第0行的往后10行,也就是第1行到第10行

 

IFNULL(expression_1,expression_2);

  如果expression_1不为NULL 就显示自己,否则显示expression_2

  类似Java expression1 != null? expression1:expression2

3.最终的SQL语句 

select IFNULL
(

(select distinct Salary from Employee  order by Salary desc limit 1,1),(null)

) as SecondHighestSalary

  

LeetCode 176. 第二高的薪水(MySQL版)

标签:etc   order   sql查询   mit   pre   distinct   desc   一个   获取   

原文地址:https://www.cnblogs.com/dddyyy/p/10585697.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!