08
2012
06

在查询数据库中某个表时,如何将查询的NULL替换为某个特定的值

Sql Server中有的数据查询的时候,如果为NULL值,查询出来还是NULL值,如果要赋值到Excel中,就是显示为NULL,现在如何将这个NULL在查询的时候就变为''值就不用再在Excel中替换;

使用的查询语句有两种:

1、select ISNULL(Phone, '') Phone,ISNULL(Tel, '') SpareTel from EMPLOYEE

2、select BusinessPhone = (case when Phone is null then '' else Phone end),SpareTel = (case when Tel is null then '' else Tel end) from EMPLOYEE

...

«1»