我正在使用下面提到的代码从employee
表中连接不同的昵称。
select @Approvers=stuff((select distinct ','+nickname as Approvers from employee
join daywisedetails on personid='XYZ' and
weekdate between '23-10-2013' and '30-11-2013' and
employeecode=approverid
FOR XML PATH('')),1,1,'')
通过上述查询,我得到如下答案
Approvers>,John H wiley</Approvers><Approvers>,Giridhar Murthy</Approvers>
但是,我需要类似下面的东西
John H wiley,Giridhar Murthy
我之前也做过类似的事情。我没有遇到过这样的问题。任何人都可以提出实现这一目标的方法。?
提前致谢。