I have data like this:
| ID | phoneno
| 01 | 0110111
| 01 | 0110112
| 02 | 0220222
| 03 | 0330333
| 03 | 0330334
I'd like to arrange them to:
| ID | phoneno1 | phoneno2 | phoneno3
| 01 | 0110111 | 0110112
| 02 | 0220222
| 03 | 0330333 | 0330334
is that possible with a single SQL statement? Thanks