I want to split a column of strings say "99 crystal springs road" and get only 2 words (99 and crystal) respectively and update 99 to one column and crystal to another column of another table. How can I do it using charindex and substring?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Here is some sample code on how to do it ... First, create this function:
Then you can use it like this:
|
|||||||||
|
|
Assuming that you are selecting "99" and "crystal" just because they're the first two words... You can do this in a single step but for ease of reading the solution I've separated it out
|
|||||||||
|
|
Maybe something like this: First create a function that gets part of the strings:
Then you can easy do this:
|
|||
|
|