把SQL查询结果为null值 替换为0


方法1:使用isnull替换
select keyId,isnull(info,0) as info from test

—方法2:使用case when 替换
select keyId,case when info is null then 0 else info end as info from test

—方法3:使用coalesce替换相应的值
select keyId , coalesce(info,0) as info from test

原创文章,作者:506227337,如若转载,请注明出处:https://blog.ytso.com/275861.html

(0)
上一篇 2022年7月21日
下一篇 2022年7月21日

相关推荐

发表回复

登录后才能评论