I have a table with some rogue tags that need replacing
The breaking line ends with <tr> and needs to be replaced with </table>
Not all entries are affected, so I need to find them and then replace them.
Our skills of using the update Replacement Where are limited, because the characters are not unique in the line, but their position is, that is, the last 4 characters
Tried to use
UPDATE table SET field REPLACE (RIGHT(field,4),</table>)
but suspec is simplified (and also doesn't work)
source share