使用Isnull()函数
语法
ISNULL ( check_expression , replacement_value )
参数
check_expression 将被检查是否为 NULL的表达式。check_expression 可以是任何类型的。
replacement_value 在 check_expression 为 NULL时将返回的表达式。replacement_value 必须与 check_expresssion 具有相同的类型。
返回类型
返回与 check_expression 相同的类型。
注释
如果 check_expression 不为 NULL,那么返回该表达式的值;否则返回 replacement_value。
ORACLE数据库用NVL(COLUMN,'为空时的值')
SQLSERVER数据库用ISNULL() 用法同上
IF (@var is null) set @val = '你的新值'
update table set fields='aaa' where fields is null or fields=''
mysql:
when a.'字段名'is null then '结果'