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
You can use TRIM('"' FROM '"this "is" a test"') which returns: this "is" a test
TRIM('"' FROM '"this "is" a test"')
this "is" a test