I have a table which contains ID and Email col.
The data is stored as follows:
ID Email
---------------
1 A
2 A0
2 A1
3 A2
3 A3
3 A4
4 A5
I want to show the value as
ID Email1 Email2 Email3
1 A
2 A1 A0
3 A2 A3 A4
4 A5
Is there any way possible to do this
The data is stored as follows:
ID Email
---------------
1 A
2 A0
2 A1
3 A2
3 A3
3 A4
4 A5
I want to show the value as
ID Email1 Email2 Email3
1 A
2 A1 A0
3 A2 A3 A4
4 A5
Is there any way possible to do this
Comment