Answers for "sql quary stuf"

SQL
0

sql quary stuf

SELECT ID,  abc = STUFF(
             (SELECT ',' + name 
              FROM temp1 t1
              WHERE t1.id = t2.id
              FOR XML PATH (''))
             , 1, 1, '') from temp1 t2
group by id;
Posted by: Guest on March-12-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language