I need help with transforming this data into a single table that has a field for each of the attributes.
So, for example, these two strings turned into the below table.
String1: "Height=60,Width=30,Color=Red"
String2: "Color=White,Height=50,Width=40" (note that the order of the attributes in the string do not match from string to string).
Height
Width
Color
60
30
Red
50
40
White
I'm not sure where to begin on this. If possible it would be best to have a table with dynamic columns. If that is not readily feasible then I could build a static table with all the attributes pre-defined if that is required.