/ Published in: SQL
replace multiple words such as firstname + lastname
Expand |
Embed | Plain Text
UPDATE Pro_BIO SET RName = RTRIM(substring(RName, 0, PATINDEX('% %', RName)))
You need to login to post a comment.
replace multiple words such as firstname + lastname
UPDATE Pro_BIO SET RName = RTRIM(substring(RName, 0, PATINDEX('% %', RName)))
You need to login to post a comment.