I have an old MySQL database and I need to remove different HTML links from description
field.
So, for example after SQL execution on description
with a following text:
Hello <a href="http://www.example1.com">test</a> World !
I need to get:
Hello World !
Please note that in my database HTML links are not the same and contain different addresses and texts.
Is it possible to do with MySQL SQL query and if so, could you please provide an example.