I have the following table
1 a 10
1 b 11
2 a 4
2 b 8
3 a 5
3 b 4
I want to rearrange the table to the following one
1 10 11
2 4 8
3 5 4
The second column will have the name 'a' and the third the name 'b'. is this possible? I'm taking my first step in SQL. Thanks for your support.