码迷,mamicode.com
首页 > 其他好文 > 详细

ifnull函数

时间:2021-01-26 11:48:22      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:函数   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

ifnull函数

标签:函数   order   ifnull   null   一个   limit   编写   distinct   sele   

原文地址:https://www.cnblogs.com/simpledu/p/14319471.html

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