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

mysql 判断字段是否为null

时间:2019-07-17 16:49:44      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:fun   例子   value   error   类型   call   实现   相同   功能   

SQL中有ISNULL方法,介绍如下:

ISNULL
使用指定的替换值替换 NULL。

语法
ISNULL ( check_expression , replacement_value )

参数
check_expression
将被检查是否为 NULL的表达式。check_expression 可以是任何类型的。
replacement_value
在 check_expression 为 NULL时将返回的表达式。replacement_value 必须与 check_expresssion 具有相同的类型。

例如:

SELECT?count(ISNULL(age,0))? FROM? Product;

但是在mysql中,isnull只是用来判断是否为空,不能实现替换功能,照上面写的话,会直接报错(Incorrect parameter count in the call to native function ‘isnull‘ Errornumber:1582 )。

那么Mysql中如何实现SQL中的ISNULL方法呢?
IFNULL( check_expression , replacement_value ),实现了SQL中的ISNULL方法。

?还是上面的例子:

SELECT?count(IFNULL(Weight,?50))? FROM? Product;

mysql 判断字段是否为null

标签:fun   例子   value   error   类型   call   实现   相同   功能   

原文地址:https://blog.51cto.com/791165566/2421060

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