Hello I am new to sql and I am not sure if it is possible like below
I have a row like this:
abc,xyz; bcd,ddd; qqq,eee
I want to write a query which will split the row to multiple rows like this:
abc,xyz
bcd,ddd
qqq,eee
Rows may contain 1 or 2 or 3 names or null, it is not fixed.
How can I do this?