mysql中判断字段为空
发布时间:2020-12-11 23:55:40 所属栏目:MySql教程 来源:网络整理
导读:中判断字段为null或者不为null?在mysql中,查询某字段为空时,切记不可用 = null,而是 is null,不为空则是 is not null?select nulcolumn from table;if nuncolumn is null then?select 1;else?select 2;end if;?执行存储过程
中判断字段为null或者不为null
?
在mysql中,查询某字段为空时,切记不可用 = null,
而是 is null,不为空则是 is not null
?
select nulcolumn from table;
if nuncolumn is null then?
select 1;
else?
select 2;
end if;
?
执行存储过程
|