I have a table with values as follows
StudentID | Name | Subscribed Subject |
101 |John | Maths, Bio, Zoo |
102 |Mary | Bio, Zoo |
I want to retrieve the information as follows
StudentID | Name | Subscribed Subject |
101 |John | Maths |
101 |John | Bio |
101 |John | Zoo |
102 |Mary | Bio |
102 |Mary | Zoo |
Can some one help me? Without using cursor.