I have a table like this
-----------
UID | NAME
-----------
1 | 'AAA'
1 | 'BBB'
2 | 'AAA'
3 | 'BBB'
3 | 'CCC'
3 | 'DDD'
I want to write a query to show the result like this:
-----------
UID | NAME
-----------
1 | 'AAA','BBB'
2 | 'AAA'
3 | 'BBB','CCC','DDD'
Is it possible to do that ?