STUFF函数无法在生产数据库中检索正确的结果

时间:2019-04-01 21:21:25

标签: sql-server-2017-express

我在本地数据库中运行以下查询,但在生产环境中却没有。有人可以帮我吗?

declare @abc varchar(max)
set @abc = (select distinct stuff((select ',' + emp_id from TableA FOR XML PATH ('')),1,1, '') From TableA
print @abc

本地结果集为:

abc
123,432,6789,2345

但是在生产中:

abc
----- results only with commas and 1's.

0 个答案:

没有答案