您现在的位置是:课程教程文章

mysql怎么导出数据到本地文件

2023-12-18 17:11课程教程文章 人已围观

把test_time表中的数据导出成txt 文件

(推荐教程:mysql数据库学习教程)

mysql> show global variables like '%secure%';  
+--------------------------+-----------------------+
| Variable_name            | Value                 |
+--------------------------+-----------------------+
| require_secure_transport | OFF                   |
| secure_auth              | ON                    |
| secure_file_priv         | /var/lib/mysql-files/ | 这个是导出目录
+--------------------------+-----------------------+
3 rows in set (0.01 sec)

进行导出操作:

mysql> select * from test_time into outfile '/var/lib/mysql-files/test_time.txt';         
Query OK, 1 row affected (0.00 sec)

会在目录下生成数据文件:

[root@master mysql-files]# more test_time.txt
1       no      2019-03-26 11:29:04     2019-03-26 11:30:55
课程教程:mysql怎么导出数据到本地文件

上一篇:mysql怎么复制一张表

下一篇:没有了

站点信息

  • 文章统计篇文章