почему mysql экспорт данных с CRLF - это не нормально? - PullRequest
0 голосов
/ 06 августа 2020
[root@CS-11:/root]# mysql -uroot -p123456 -Dtest 
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 201
Server version: 5.1.73 Source distribution

Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> show create table t_test;
+--------+-------------------------------------------------------------------------------+
| Table  | Create Table                                                                  |
+--------+-------------------------------------------------------------------------------+
| t_test | CREATE TABLE `t_test` (
  `v` longtext
) ENGINE=MyISAM DEFAULT CHARSET=latin1 |
+--------+-------------------------------------------------------------------------------+
1 row in set (0.00 sec)

mysql> truncate table t_test;
Query OK, 0 rows affected (0.00 sec)

mysql> insert into t_test values('aaa\nbbb'),('ccc\rddd');
Query OK, 2 rows affected (0.00 sec)
Records: 2  Duplicates: 0  Warnings: 0

mysql> Bye
[root@CS-11:/root]# mysql -uroot -p123456 -Dtest -N -s -e 'select * from t_test' > t_test.txt

затем я просматриваю этот файл и показываю его в блокноте ++

enter image description here

введите описание изображения здесь

Мне интересно, почему '\ n' коррент, а '\ r' отображается как '^ M'? как показывать 'ccc \ r ddd' в файле?

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...