标签:函数 order ifnull null 一个 limit 编写 distinct sele
ifnull函数的作用是如果你查询的字段值为null的话给它一个不是null的默认值
ifnull(x,y),若x不为空则返回x,否则返回y
栗子
编写一个SQL查询,获取Employee表中第二高的薪水(Salary)
Id Salary
1 100
2 200
3 300
SQL语句
SELECT IFNULL ((SELECT distinct Salary from Employee order by Salary desc limit 1 offset 1),Null) AS SecondHighestSalary
标签:函数 order ifnull null 一个 limit 编写 distinct sele
原文地址:https://www.cnblogs.com/simpledu/p/14319471.html