I have a string having name,value pairs. I want to parse this string and store it in a table. How to do this using Informix SQL?
String looks like this.
A1=aa1 A2=aa2 A3=aa3.
From this string I want to take out all A's and aa's and store them in a table. Like this
Table A
Name Value
------ -------
A1 aa1
A2 aa2
A3 aa3
Is it possible to do this in Informix SQL? Please help.
THanks,
Gopal