On Google I just found group by sum (integer value). How can I group by a string value? For the table:
No Place Car
--- ------ --------
1 NY VRM1
1 BT VLI
2 NY GAR
3 GT GAR
How can I group by 'No'? I tried:
SELECT No, place, Car
FROM APPEL
GROUP BY No, Place, Car
But it didn't work.
I want to have a table like this
No Place Car
--- ------ --------
1 NY,BT VRM1,VLI
2 NY GAR
3 GT GAR