How can I remove or replace a string from a column? eg: I want from my articles to remove the string:
<p>John say's "Hello Mary"</p>
I try with the REPLACE() function in phpmyadmin but I get an error. The query is the below:
select `column_name` REPLACE('<p>John say's "Hello Mary"</p>', '<p>John say's "Hello Mary"</p>', '') where id=1234;
Thank you