mysql> describe xx;
+-------+-----------+------+-----+---------+-------+
| Field | Type      | Null | Key | Default | Extra |
+-------+-----------+------+-----+---------+-------+
| ff    | char(200) | YES  |     | NULL    |       |
+-------+-----------+------+-----+---------+-------+
1 row in set (0.01 sec)mysql> insert into xx values('abc \\r \\n def');
Query OK, 1 row affected (0.02 sec)mysql> select * from xx;
+---------------+
| ff            |
+---------------+
| abc \r \n def |
+---------------+
1 row in set (0.00 sec)