mssql sqlserver 将字段null(空值)值替换为指定值的三种方法分享


摘要:

下文将分享三种将字段中null值替换为指定值的方法分享,如下所示:
实验环境:sqlserver 2008 R2

create table test(keyId int identity, info varchar(30))
   go
   insert into test(info)values('a'),('b'),(null),('d')
   go 
   ---方法1:使用isnull替换
   select keyId,isnull(info,'替换null值')  as info from test 
   go 
   ---方法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 
  
   go 
   truncate table test 
   drop table test 

原文地址:http://www.maomao365.com/?p=6965


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM