Have a table that has a column that looks like this:<root><Option><PostitionTitle>Telesales Consultants</PostitionTitle><Status>Full-time</Status><ReportTo>Team Leader</ReportTo><JobSummary>Sales of general insurance products over the phone.</JobSummary><Duties>Make calls to acquire new customersConvert effective calls to salesUpdate contact management database</Duties><Knowledge>Speak good EnglishComputer literateMust have insurance certification such as :- Certificate in General Insurance or- Health Insurance Certificate</Knowledge><Credentials>Nil</Credentials><SpecialRequirements>Must not be a practising insurance consultant</SpecialRequirements></Option></root>
I have 36 rows in my table that I can access using this query:SELECT convert(xml,content_html) FROM [webportalv60].[dbo].[content] c JOIN JobSearch..jobs_old jo ON jo.contentID = c.content_id WHERE end_date IS NULL OR end_date >= GETUTCDATE()
I need to parse that data out and get to insert each peice into a row. How do I do that?Craig Greenwood