I have a string field in SQL Server that contains a few items I want to break out into separate fields. Two of them contain double quotes. Here is an example of what exists in the field. This is all in a single string
Example: 111668999 555444888 "3 LOW" "5 HIGH"
What I would like to do is break out the "3 LOW" and "5 HIGH" into their own new fields, but keep the quotes around them. I have successfully separated the numerical values proceeding them, so I am just working on the "3 LOW" "5 HIGH" values. I'm sure it can be done with a combination of CHARINDEX and SUBSTRING but I was struggling with identifying the quotes as start and end points and making sure they remain included in the new fields.
Thanks!
