I have a mysql database with 400k posts. In arround 100k posts are images. Example:
text text text <img src="/images/test.jpg"> text text text
The complete image string <img src="/images/test.jpg">
must be deleted. But its not always <img src/images/test.jpg">
there are many variants. So I could not use the typical sql replace .
What I need is "sql replace between two characters". For me, delete / replace everything between "<img" and ">"
and off course incloude the <img and >
Is that anyways possible? Thank you