I've been searching for hours now but can't find anything that actually works.
I've got this in multiple records :
<p style="text-align: justify;"> SOME TEXT </p> <p style="text-align: justify;"> MORE TEXT </p> I want to change it to this :
<p style="text-align: justify;"> SOME TEXT MORE TEXT </p> I want to keep the line break but delete the first end tag and the second start tag.
I tried this :
UPDATE my_table SET my_collumn = REPLACE(my_collumn,'</p> <p style="text-align: justify;">','') BUT it doesn't detect it because of the LINE BREAK between it.
How can I solve this?
Many thanks