I have a field with an address in it... each line is separated by a comma.
The data is to be transferred into a new DB and I need to separate the data into its own fields.
So... take the first section up to the comma (into a new field), the middle section up to the next comma (into a new field) and the end section into a new field (into a new field).
I was thinking of some kind of variation of TRIM(LEFT()) etc...
Does anyone have any suggestions / code examples?
The data is to be transferred into a new DB and I need to separate the data into its own fields.
So... take the first section up to the comma (into a new field), the middle section up to the next comma (into a new field) and the end section into a new field (into a new field).
I was thinking of some kind of variation of TRIM(LEFT()) etc...
Does anyone have any suggestions / code examples?