Hi,
I have a table
SQL> select * fom temp;
FID TID RN
---------- ---------- ----------
1 2 1
1 3 2
1 4 3
2 1 1
2 5 2
3 1 1
3 6 2
3 7 3
4 1 1
Now i want the o/p like this
FID TID's
------ ---------------------------
1 2,3,4
2 1,5
3 1,6,7
4 1
Any Help?
thank you
I have a table
SQL> select * fom temp;
FID TID RN
---------- ---------- ----------
1 2 1
1 3 2
1 4 3
2 1 1
2 5 2
3 1 1
3 6 2
3 7 3
4 1 1
Now i want the o/p like this
FID TID's
------ ---------------------------
1 2,3,4
2 1,5
3 1,6,7
4 1
Any Help?
thank you
Comment