摘要:
下文将分享三种将字段中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
继续阅读与本文标签相同的文章
上一篇 :
MySQL---下载安装、数据库基本操作
-
开发函数计算的正确姿势 —— 使用 ROS 进行资源编排
2026-05-18栏目: 教程
-
阿里云InfluxDB®基于TSI索引的数据查询流程
2026-05-18栏目: 教程
-
开发函数计算的正确姿势 —— 依赖安装方法一览
2026-05-18栏目: 教程
-
支付宝小程序“开闸放粮”,亿级流量扶持中小商家!
2026-05-18栏目: 教程
-
BFC 布局概念总结
2026-05-18栏目: 教程
