加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 站长学院 > MsSql教程 > 正文

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

发布时间:2020-12-12 14:20:55 所属栏目:MsSql教程 来源:网络整理
导读:摘要: 下文将分享两种将字段中null值替换为指定值的方法分享,如下所示: 实验环境:sqlserver 2008 R2 例: ? create table test(keyId int identity ,info varchar ( 30 )) go insert into test(info) values ( ‘ a ‘ ),( ‘ b ‘ ),( null ),( ‘ d ‘ ) g

摘要: 下文将分享两种将字段中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

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读