Because the quotation mark is a special character is there a way to replace all quotation with nothing
Original Query
Update table X
Set mycolumn = Replace(mycolumn,''','')
Where mycolumn like '%'%'
Error
(Incorrect SQL Syntax – Unclosed quotation mark after the character string ”’)
You need to escape the
'by doubling it:Though the
Whereclause is probably redundant.