i have a table in format
item_id packet_no
1 4
1 5
2 6
3 7
3 8
3 9
4 10
4 11
i want to convert it into this format
item_id packet_1 packet_2 packet_3
1 4 5
2 6
3 7 8 9
4 10 11
is it possible by sql query?
kindly help
thanx
item_id packet_no
1 4
1 5
2 6
3 7
3 8
3 9
4 10
4 11
i want to convert it into this format
item_id packet_1 packet_2 packet_3
1 4 5
2 6
3 7 8 9
4 10 11
is it possible by sql query?
kindly help
thanx
Comment