标签:name 自己 from 比较 where 计算 coalesce 运算 rom
NULL值永远不会等于或者不等于任何值,也包括NULL值自己本身,但是需要像计算真实值一样计算可为空列的返回值
解决方案:使用Coalesce函数/ISNULL函数将NULL转化为一个可以用来作为标准值进行比较的真实值
select ename,comm,coalesce(comm,0)
from emp
where coalesce(comm,0)<(select comm from emp where ename =‘WARD‘);
标签:name 自己 from 比较 where 计算 coalesce 运算 rom
原文地址:http://www.cnblogs.com/liang545621/p/6795356.html