I have table like this
Name   |  Email             | Phone number 
alis     alis@123.com        +989355555;+989366666;+9803777777
John     john@yah.com        +989122222
sara     sara@yah.com        +989113212;+989113312
and I want a query to select this table like this and after that insert this table in other table.
Name   |  Email             | Phone number 
alis     alis@123.com        +989355555
alis     alis@123.com        +989366666
alis     alis@123.com        +9803777777
John     john@yah.com        +989122222
sara     sara@yah.com        +989113212
sara     sara@yah.com        +989113312
split all phone number and save them with similar fields name.
 
    
