当前位置: 代码迷 >> Sql Server >> 一个SQL查询的有关问题,大家来看看。
  详细解决方案

一个SQL查询的有关问题,大家来看看。

热度:23   发布时间:2016-04-27 12:23:25.0
一个SQL查询的问题,大家来看看。。
SQL code
SELECT [Department]      ,[#]      ,[Created Date]      ,[Planned Date]      ,[Planned Time]      ,[Staff Name]      ,[Dealer]      ,[Addr# 1]      ,[Addr# 2]      ,[Model No#]      ,[Problem 1]      ,[Problem 2]      ,[Problem 3]      ,[Problem leading to delay]      ,[Remarks]      ,[Contact]      ,[Tel 1]      ,[Tel 2]      ,[e-mail address]      ,[Type]      ,[Job status]      ,[Job status date]      ,[FSO#]      ,[Amount]      ,[Paid]      ,[Quotation#]      ,[Warranty Card#]      ,[Status]      ,[Status_Deadline]      ,[Step]      ,[Call you in advance]      ,[Arrive on time]      ,[Identity and Uniform]      ,[Satisfied with service]      ,[Politeness]      ,[Solve the issue]      ,[Recommend Johnson Controls]      ,[Any comment]  FROM [JCIHKEroom1].[dbo].[temp]

这里面有两个字段,分别是:[Addr# 1],[Addr# 2],我想在查询的时候,把这两个字段里面的值加到一起输出出来,[Addr# 2]这个字段里面有空值,我用:[Addr# 1]+[Addr# 2],这样是查不出来的,大家看看有什么好办法没?

------解决方案--------------------
ISNULL([Addr# 1],'')+ISNULL([Addr# 2],'')
  相关解决方案