系统城装机大师 - 固镇县祥瑞电脑科技销售部宣传站!

当前位置:首页 > 数据库 > mssql2008 > 详细页面

sql 实现将空白值替换为其他值

时间:2023-12-07来源:系统城装机大师作者:佚名

下图中数据库中查询到的值有空值,包括空白值(“”)和null

如何将上图中的null和空白值替换为其他的值呢??

有人建议使用isnull()函数,但是该函数只能替换null无法替换空白的值。

可以使用下面的sql 语句对null和空白值都替换为其他的值。

1 select (CASE when (TelPhone IS NULL OR TelPhone='') then '暂无' else TelPhone end) as TelPhone,(CASE when (Name is null or Name='') then '暂无' else Name end) as name,(CASE when (CreateDate IS NULL OR CreateDate='') then '暂无' else CreateDate end) as CreateDate,(CASE when ([Address] IS NULL OR [Address]='') then '暂无' else [Address] end) as [Address] from User_Detail

执行sql语句后效果如下:

上图中我们可以看到所有的null和空白值都替换为了“暂无”。

补充:SQL查询时替换空值

目前我所知道的有三种方法:

1. 使用if语句

1 select if(age is null,18,age) from student

2. 使用函数:

2.1 isnull

1 SELECT isnull(age,18) from Student

2.2 coalesce

1 select coalesce(age,18) from student

以上为个人经验,希望能给大家一个参考

分享到:

相关信息

系统教程栏目

栏目热门教程

人气教程排行

站长推荐

热门系统下载