I have a Database table structure in the following format..
ID | Value |
100 | ADE |
100 | BCD |
100 | CEF |
101 | MNO |
101 | PQR |
101 | XYZ |
102 | EFG |
I want a query to retrieve the results of table in the following format.
ID | Results |
100 | ADE,BCD,CEF |
101 | MNO,PQR,XYZ |
102 | EFG |
I know that we can accomplish this by PIVOT Keyword but not able to finalize the query, can you guys help me out Please
Thanks in Advance