I need to search and replace this html in a mysql database ( via phpMyAdmin ) :
<tr>
<td></td>
<td></td>
</tr>
But I don't know how to find it, as it has line breaks.
My current query is :
UPDATE `wp_posts`
SET `post_content` = replace(post_content, '<tr>
<td></td>
<td></td>
</tr>', '')
But obviously, it's not working.
How can I target it ?
\\ninstead of newlines in replace