اتصال مقادیر یک ستون جدول بدون استفاده از متغیر
چهارشنبه, ۲ دی ۱۳۹۴، ۱۱:۲۱ ق.ظ
CREATE TABLE #test
( id TINYINT IDENTITY , nam NVARCHAR(100) );
GO
INSERT INTO #test
( nam )
VALUES ( N'keteb' ),
( N'medad' ),
( N'mashin' )
SELECT *
FROM #test
ORDER BY nam
SELECT STUFF(
(SELECT ',' + nam
FROM #test
ORDER BY nam
FOR XML PATH('') ,
TYPE
).value('.', 'varchar(max)'), 1, 1, '') AS Concatenate_nam
Concatenate_nam
keteb,mashin,medad
http://stackoverflow.com/questions/194852/concatenate-many-rows-into-a-single-text-string
3.
http://sqlperformance.com/2014/08/t-sql-queries/sql-server-grouped-concatenation
4.
https://www.simple-talk.com/sql/t-sql-programming/concatenating-row-values-in-transact-sql/
۹۴/۱۰/۰۲