This is my first question in StackOverflow and I would like to have little help from you.
I need a query that returns a string with all users' scores concatenated, grouped by their username. I'll try to exemplify:
username score
John421 4028
Robin 5392
Ninaww 2234
Robin 4631
Robin 2792
John421 8924
The query should return:
username all_scores
John421 '4028,8924'
Robin '5392,4631,2792'
Ninaww '2234'
Hope someone can help me and thanks in advance! :)