ex:
the column 'genre' has a row of data:
+----------------------------+
| genres |
+----------------------------+
| action, adventure, drama | |
| |
+----------------------------+
my desired output will be a column that holds the following data:
+------------+
| genre |
+------------+
| action |
| adventure |
| drama |
+------------+
how do I do it in mysql?