博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mssql sqlserver 将字段null(空值)值替换为指定值的三种方法分享
阅读量:4879 次
发布时间:2019-06-11

本文共 575 字,大约阅读时间需要 1 分钟。

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

转载于:https://www.cnblogs.com/lairui1232000/p/9940925.html

你可能感兴趣的文章
用户交互程序,格式化输出
查看>>
GNOME的发展与对比
查看>>
SPOJ PT07X Vertex Cover
查看>>
$ python-json模块的基本用法
查看>>
5.6.3.4 trim()方法
查看>>
Cookie、Session和自定义分页
查看>>
SQL演练
查看>>
React Antd中样式的修改
查看>>
Spring 应用外部属性文件 配置 context 错误
查看>>
导入lxml找不到etree,报ImportError:DLL load failed:找不到指定的程序
查看>>
面向对象一
查看>>
大象的崛起!Hadoop七年发展风雨录
查看>>
图片二值化
查看>>
数据库常用函数
查看>>
集合之TreeSet(含JDK1.8源码分析)
查看>>
C语言学习的记忆
查看>>
Lucene学习总结之三:Lucene的索引文件格式(1) 2014-06-25 14:15 1124人阅读 ...
查看>>
vhost:一种 virtio 高性能的后端驱动实现
查看>>
面试经验合集-Java后端<一>
查看>>
声明式事务
查看>>