SQLServer-兩種將字段中null值替換爲指定值的方法

—方法1:使用isnull替換
select keyId,isnull(info,‘替換null值’) as info from test
—方法2:使用case when 替換
select keyId,case when info is null then ‘替換null值’ else info end as info from test
—方法3:使用coalesce替換相應的值
select keyId , coalesce(info,‘替換null值’) as info from test
— sqlserver 2012``

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章