Essentially, I have a table called Table1
that has a column called emails
that contains email addresses separated by semicolons.
For example:
Row1:
[email protected]; [email protected]
Row2:
[email protected]; [email protected]; [email protected]
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?