I have a table in a SQL Server database with an NTEXT column. This column may contain data that is enclosed with double quotes. When I query for this column, I want to remo
I thought this is a simpler script if you want to remove all quotes
UPDATE Table_Name SET col_name = REPLACE(col_name, '"', '')