Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

SQL, domande su join

sfortunatamente, non esiste un modo semplice per farlo in SQL Server. Le soluzioni note sono:

  • trucco xml (vedi sotto);
  • utilizzo della variabile per accumulare dati (non funziona per più righe di gruppo, solo con il cursore);
  • aggregato CLR personalizzato;

ecco xml:

select
    n.name1,
    stuff(
        (
         select ', ' + p.product
         from prod as p
         where p.id_name = n.id
         for xml path(''),  type).value('.', 'nvarchar(max)')
    , 1, 2, '') as products
from name as n

sql fiddle demo

ecco la variabile:

declare @product nvarchar(max), @id int

select @id = 1

select @product = isnull(@product + ', ', '') + product
from prod
where id_name = @id

select name1, @product as products
from name 
where id = @id

sql fiddle demo