I have a query with a field that has an output of a string delimited by a semicolon. For example: Jimmy;Joe;Mary;John. I would like to separate each name into separate records:
Jimmy
Joe
Mary
John.
The string can be of any length. So there can be one name in one record, and there could be 10 in the next, and 5 in the next. I do not have the String_Split function available. Is there a way to do it with XML or something.
Jimmy
Joe
Mary
John.
The string can be of any length. So there can be one name in one record, and there could be 10 in the next, and 5 in the next. I do not have the String_Split function available. Is there a way to do it with XML or something.