I have a table which has following values:
case code id
100 A10 1
100 A11 2
100 A12 3
101 A11 4
102 A10 5
I need to write a query to get the following output:
case code
100 A10, A11, A12
101 A11
102 A10
Any help would be appreciated. Thanks.