table1 a b c
1 2 3
1 2 5
2 3 4
....
only combine rows with the same a and b: Desired result:
table2 a b c
1 2 3,5
2 3 4
....
How? The real table contains like 15 fields, and want to combine rows base on 5 fields.