1.原始查詢表結果
2.理想查詢表結果
一很牛的朋友寫的sql語句大笑,學習啦偷笑:
select userpwd,username=stuff((select ','+username from tuser t1 where t1.userpwd=t.userpwd for xml path('')),1,1,'')
from tuser t
group by userpwd
說明: a.stuff方法(舉例說明:select stuff('abcdef', 2, 3, 'klmn'); 在第一個字符串如: abcdef 中刪除從第 2 個位置(字符 b)開始的三個字符,然後在刪除的起始位置插入第二個字符串,從而創建並返回一個字符串aklmnef),
b.for xml path(在SQL Server中利用 FOR XML PATH 語句能夠把查詢的數據生成XML數據),
c.group by(分組函數)