MySQL判断字段值为null

使用两种方式判断数据库中字段值为空,并使用其它值显示

方式1:

使用Case when   ....  then  ......   end 语句实现。

select (case when BirthDate is null then '日期不详' end) birth
from employees

方式2:

使用ifNull函数实现。不过当替代的显示值为中文时,显示乱码

select ifnull(BirthDate,'test') birth
from employees

你可能感兴趣的:(mysql,数据库,null)