Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
sqlfresher2k7
Aged Yak Warrior
623 Posts |
Posted - 2011-02-03 : 14:41:33
|
How do i update a column values for special characters.. Existing dataEx:colname1 columname2-------- --------------1 test Area/willow towers2 test Area/Chamber Towers Expected output:colname1 columname2-------- --------------1 Some Name/willow towers2 Some Name/Chamber Towers Thanks for your help in advance. |
|
jimf
Master Smack Fu Yak Hacker
2875 Posts |
Posted - 2011-02-03 : 14:58:46
|
UPDATE tableSET columname2 = REPLACE(columname2,'test Area/','Some Name/')JimEveryday I learn something that somebody else already knew |
 |
|
|
|
|