Guest_imported
New member
- Jan 1, 1970
- 0
say you have a result set that goes like this:
StudentID StudentType
----------------------
1 0
2 1
3 2
4 0
5 1
6 2
and I want to get:
Type1StudentID Type2StudentID
------------------------------
2 3
5 6
without writing a cursor, how can I do this?
StudentID StudentType
----------------------
1 0
2 1
3 2
4 0
5 1
6 2
and I want to get:
Type1StudentID Type2StudentID
------------------------------
2 3
5 6
without writing a cursor, how can I do this?