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
...