I have a situation where I need to group SQL results by a specific field, while at the same time I need all values of a specific column of the grouped rows to be returned in one field (like so values1,value2,value3 etc)
example data:
NAME id
john 1
john 2
john 3
maria 4
maria 5
result I need:
john 1,2,3
maria 4,5
Is this possible and how?