sql – 如何在COALESCE()中获取不同的值

前端之家收集整理的这篇文章主要介绍了sql – 如何在COALESCE()中获取不同的值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有这种格式的表值
sam
jack
sam
john

Declare @name varchar(max)
select @name = COALESCE(@name + ',','')+ user_email 
from   PostedCommentMaster where article_id = @id

我怎样才能获得不同的价值

sam,jack,john

像这样.

解决方法

您可以将select语句包装到子选择中并对结果应用合并.
Declare @name varchar(max) 

select @name = COALESCE(@name + ','') + user_email 
from   (select distinct user_email 
        from   PostedCommentMaster 
        where article_id = @id) pc

请注意,这使用sql Server的未记录功能将结果连接成一个字符串.虽然我找不到它的链接,但我记得读到你不应该依赖这种行为.

更好的选择是使用FOR XML语法返回连接字符串. A search on SO返回可以用作示例的多个结果.

原文链接:https://www.f2er.com/mssql/77742.html

猜你在找的MsSQL相关文章