I have a large MySQL database with lots of text (like '[new line]Normal') that I want to find & replace. However, I can't find it with any of the following searches, because I'm not sure what characters are used where the [new line] occurs - hence my question.
SELECT * FROM table WHERE field LIKE "%<!--[if gte mso 9]><xml>\nNormal%";
SELECT * FROM table WHERE field LIKE "%<!--[if gte mso 9]><xml>\rNormal%";
SELECT * FROM table WHERE field LIKE "%<!--[if gte mso 9]><xml>\n\rNormal%";
SELECT * FROM table WHERE field LIKE "%<!--[if gte mso 9]><xml>\r\nNormal%";
Thanks for any help you can give...