我正在尝试使用 SQL Server Management Studio 2008 运行以下查询。
update Schema.[ClientNew]
set [Notes] = ([Notes]+ char(10)+(Select [Notes] from Schema.[clientOld]
where office = 90 and ID = '123456789AM')) where office = 90 and ID= '123456789'
基本上试图将我的笔记字段中的所有数据从clientOld合并到clientnew中的notes字段。
这只是代码的一部分。
分开时:
Select [Notes] from Schema.[clientOld] where office = 90 and ID = '123456789AM'
给我备注字段中的数据。
但是当我运行查询时,clientNew 表上只出现 {null} 值。
我的查询错了吗??或在某处写空值?
请指教,