标签:zha 错误 The name col 判断 column ase 数字
Sql 中使用case when then 判断某字段是否为null,和判断是否为 字符 或 数字 时的写法不一样:
如果不注意,很容易搞错:
错误方法:
(zhaohao 已实践,的确是不行。虽然不会报错,但是结果不对的)
CASE columnName WHEN null THEN 0 ELSE columnName END
正确方法:
CASE WHEN columnName is null THEN 0 ELSE columnName END
标签:zha 错误 The name col 判断 column ase 数字
原文地址:https://www.cnblogs.com/accumulater/p/13196654.html