when I run select statement from mysql database, characters like \n \t will be escaped. Is there a way to see these original characters in mysql?
What I want to see is something like "java.lang.Exception: Container released on a lost node\r\n\tat"
when I run select statement from mysql database, characters like \n \t will be escaped. Is there a way to see these original characters in mysql?
What I want to see is something like "java.lang.Exception: Container released on a lost node\r\n\tat"
Try this:
SELECT * FROM table
WHERE column_name REGEXP "\n"
OR column_name REGEXP "\t";