M
Matt Hohmeister
I have an interesting parsing problem. I have a table formatted like this:
"1","Newark;Trenton;Camden"
....and, using SQL, I'd like to convert it to this:
"1","Newark"
"1","Trenton"
"1","Camden"
Basically, I'd like to parse a theoretically unlimited number of
semicolon-separated locations such that I wind up with a table linking each
number to one location.
"1","Newark;Trenton;Camden"
....and, using SQL, I'd like to convert it to this:
"1","Newark"
"1","Trenton"
"1","Camden"
Basically, I'd like to parse a theoretically unlimited number of
semicolon-separated locations such that I wind up with a table linking each
number to one location.