Essentially, I have a table called Table1
that has a column called emails
that contains email addresses separated by semicolons.
For example:
Row1:
test1@gmail.com; test2@gmail.com
Row2:
test4@gmail.com; test5@gmail.com; test6@gmail.com
I would like to do a select query on the table to display each email on its own row each time the a semicolon is there to split. How can this be done?