i want to join rows within same table
eg
pid name rollno
1 a 123
2 b 456
1 j 789
2 h 752
two students working on same project
i want to get table of this type
i used self join for this but it doesnt work
pid name rollno rname rrollno
1 a 123 j 789
plz suggest me
eg
pid name rollno
1 a 123
2 b 456
1 j 789
2 h 752
two students working on same project
i want to get table of this type
i used self join for this but it doesnt work
pid name rollno rname rrollno
1 a 123 j 789
plz suggest me
Comment