MySQL导入导出数据时遇到Tab符号和换行符号怎么办

MySQL导入导出数据时遇到Tab符号和换行符号怎么办,第1张

根本不用考虑\t和\n

1)MySQL的select导出时,会自动把\t和\n转义成\\t和\\n;

2)在shell、Python的代码中,按行读取,程序遇到\\n,会自动略过的;

3)在shell、Python的代码中,按\t分割,程序遇到\\t,会自动略过的;

4)load data导入数据的时候,遇到了\\t和\\n,也当成普通字符处理;

使用MYSQL -I命令,查看MYSQL命令的参数,其中对--auto-rehash参数的说明如下:--auto-rehash Enable automatic rehashing. One doesn't need to use 'rehash' to get table and field completion, but startup and reconnecting may take a longer time. Disable with --disable-auto-rehash. 网上也找了一些资料,说是打开MYSQL的自动补全功能,类似于LINUX的TAB键补全功能。但如下使用该参数后,输入SQL命令,中途按TAB健,并未出现自动补全的效果,不知道如何 *** 作: [sql] C:\Users\qxlmysql -u root --auto-rehash Welcome to the MySQL monitor. Commands end with or \g. Your MySQL connection id is 29 Server version: 5.1.28-rc-community MySQL Community Server (GPL) Type 'help' or '\h' for help. Type '\c' to clear the buffer. mysql use test Database changed mysql select * from newnam


欢迎分享,转载请注明来源:内存溢出

原文地址:https://54852.com/zaji/6180445.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2023-03-17
下一篇2023-03-17

发表评论

登录后才能评论

评论列表(0条)

    保存