I am using SQL Server 2005 Express (not mysql).
I have a string
str = 'E1 ; abc ; E2 ; def';
I want to split string str
with respect to delimiter ;
and then insert values into table as follows:
Name Value
E1 abc
E2 def
Please help, thanks in advance !!!