If I have a table with the following data in MySQL:
id Name Value
1 A 4
1 A 5
1 B 8
2 C 9
how do I get it into the following format? is that even possible?
id Column Column Column Column Column Column
1 A 4 A 5 B 8
2 c 9