SELECT * FROM mytable WHERE mycolumn REGEXP "\r\n";
finds all records in mytable where mycolumn contains a \r\n sequence.
SELECT * FROM mytable WHERE mycolumn REGEXP "\r\n";
finds all records in mytable where mycolumn contains a \r\n sequence.