I have a table that has multiple values in a column. I need to create individual rows for each value. I have no clue how to even approach that. I can split the values in the column by comma but after that I'm lost. Any suggestion is welcome.
Table Courses
Name | Courses
--------------------------
Kyle | Math, English, Science
Joe | Math, English
Resulting Table
Name | Courses
-----------------------------
Kyle | Math
Kyle | English
Kyle | Science
Joe | Math
Joe | English