I have following table content.
COLUMN_A  | COLUMN_B
a         | 123!234!345
b         | 809!123!678!456
c         | 678!789
Is there a way to have a SQL to separate the delimiter "!" and generate a new row as shown below? The number of delimiter in column_B is in random
COLUMN_A  | COLUMN_B
a         | 123
a         | 234
a         | 345
b         | 809
b         | 123
b         | 678
b         | 456
c         | 678
c         | 789
