我现在是这样的写的,请教各位有什么更好的方法??
是SQL 2008 R2
- SQL code
(case when A.ItemMemo is null then '' else A.ItemMemo end) + (case when A4.Description is null then '' else A4.Description end) AS 工艺要求
------解决方案--------------------
- SQL code
isnull(A.ItemMemo,'')+isnull(A4.Description,'') as 工艺要求
------解决方案--------------------
------解决方案--------------------
- SQL code
isnull(A.ItemMemo,'')+isnull(A4.Description,'') AS 工艺要求