Trust me this is classic but I don't know how to resolve this:
This is my data source
    ID   Color  Description 
    -----------------------  
    10   White  MR    
    10   White  DREAM  
    10   White  TURTLENIP  
My output data expected show like this:
    ID   Color   Description 
    ------------------------  
    10   White   MR, DREAM, TURTLENIP    
I use COALESCE but it seem not work for this report.
P.S this is simple question from my case, my query lot of inner join to merge another table in one report. But I don't know how to merge several row Desc to merge into one row.
 
    