January 30, 2013 at 3:31 am
How to select comma separated columns data, i was using below query but due to large data it is killing performance.
select id, (select itbl.name+','
from tblname itbl
where itbl.id=tbl.id
for xml path('')) name
from tblname tbl
group by id
I am looking for any alternative.
January 30, 2013 at 3:49 am
this is not actual query (not the actual table too) . Anyways Do you have index on ID column here ?
and do you need complete table in this query ? because here it will go to scan (table/clustered)
-------Bhuvnesh----------
I work only to learn Sql Server...though my company pays me for getting their stuff done;-)
January 30, 2013 at 4:58 am
check ...
Do you have index on ID column ?
if there is no index on id column then create non cluster index on id column
after that
try below code.
DECLARE @T1 TABLE(ID INT,dept varchar(10))
INSERT INTO @T1(ID,dept)VALUES(1,'A'),(1,'B') ,(1,'C'),(2,'A'),(2,'B')
select DISTINCT id, (select T1.dept+','
from @T1 T1
where T1.id=T2.id
for xml path('')) name
from @T1 T2
Viewing 3 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply