How to convert comma separated field value into respective rows in query?
I have a field say Type="data1,typ e1,string1,tom"
This is one field of a table which consists of 5 other fields
My output need to be of 5 rows with all the other fields repeated in all the rows
field1 field2 field3 Type
1 hh 2 data1
1 hh 2 type1
1 hh 2 string1
1 hh 2 tom
This should be my output while fetching the data from the database.
Thanks in advance
I have a field say Type="data1,typ e1,string1,tom"
This is one field of a table which consists of 5 other fields
My output need to be of 5 rows with all the other fields repeated in all the rows
field1 field2 field3 Type
1 hh 2 data1
1 hh 2 type1
1 hh 2 string1
1 hh 2 tom
This should be my output while fetching the data from the database.
Thanks in advance
Comment