I have a column populated from a xml stream. In the column there are words deliminiated with a comma. could be two or more words, sometimes up to 6. Some rows contain a single word without any commas. I know how to select the rows that have commas but what I want to do it to take the rows that conatin commas and drop them into another table but split up based on the comma. Where the row containing ("Home, Home Improvement, Home Fixtures which is in one row, Select it and insert it into anoter table as three entries.
The select table Im selecting (catid, category)
as select catid and category from cattable where instr(category,',')
Any Ideas. Thanks
The insert table only has two colums (catid, category)
The select table Im selecting (catid, category)
as select catid and category from cattable where instr(category,',')
Any Ideas. Thanks
The insert table only has two colums (catid, category)