I am trying to remove all links from column_content in my table_name. Links look like:
<a style="text-decoration:none" href="/index.php?o=oda-res-site">.</a>
and href="........"
is different in each record.
Can you help with a statement with wildcards that will clean all links <a ..../a>
?
I tried this:
UPDATE MyTable
SET StringColumn = REPLACE (StringColumn, 'SearchForThis', 'ReplaceWithThis')
but I could not found the proper wildcards to include -if possible- all links.
Thank you I use phpMyadmin