5
I’m needing to update a column that has lots of simple quotes in the field, content with the letter was inserted so it has several tags of the type
<span style="FONT-SIZE: 12pt; FONT-FAMILY: "Times New Roman","serif"; mso-fareast-font-family: 'Times New Roman'; mso-ansi-language: PT-BR; mso-fareast-language: PT-BR; mso-bidi-language: AR-SA"><font face="Arial" size="2">meu conteudo </font></span>
The problem is in simple quote times' / 'Times New Roman';
when I run this query in sql manager it would be to replace single quotes with double quotes.
When I put [quotation marks and one more in the middle] it’s already wrong!! , the tag is already underlined sql
thinks that and comment after the second quote the rest of the string turns gray!
I’ve tried double quotes and single quotes in the middle also didn’t work.
This update I need.
UPDATE pessoas SET nome = replace(nome, ''', '"') WHERE nome LIKE '%'%';
Someone knows how I fix it?