Sign in | Join
Last post 08-29-2008 4:51 PM by xuanvu. 3 replies.
Sort Posts: Oldest to newest Newest to oldest
Hi all,
I have a column in MS SQl database that have double quotes (") surround the texts, how do I batch remove all of them?
Thanks,
Kenny.
use the replace function
http://msdn.microsoft.com/en-us/library/ms186862.aspx
Without a WHERE clause, all values will be updated which is the remove of double quotes.
UPDATE
Thank you Jeev and Limno.