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 |
TAlan
Starting Member
2 Posts |
Posted - 2010-04-01 : 13:33:16
|
I have a column populated with records that have double quotes on them, and need an update statement to remove the double quotes. Please advise.Cheers! |
|
visakh16
Very Important crosS Applying yaK Herder
52326 Posts |
Posted - 2010-04-01 : 13:34:52
|
[code]UPDATE TableSET Col=REPLACE(Col,'"','')[/code]------------------------------------------------------------------------------------------------------SQL Server MVPhttp://visakhm.blogspot.com/ |
|
|
|
|
|