MySQL支持将查询结果直接导出为文本格式,格式如下:
举个栗子:
select * from [表名] where [字段名] ='条件'into outfile 'c:/test.csv' fields terminated by ',' optionally enclosed by '"' lines terminated by '\r\n';
执行后,会把指定表中记录数据导出到c:/test.csv文件中。每个字段以,(逗号)分隔,字段内容是字符串的以”(双引号)包围,每条记录使用\r\n换行。如图所示
如果导出的过程中出现:
the MySQL server is running with the --secure-file-priv option so it cannot execute this statement
secure-file-priv参数是用来限制LOAD DATA, SELECT ... OUTFILE, and LOAD_FILE()传到哪个指定目录的。 ure_file_priv的值为null ,表示限制mysqld 不允许导入|导出 当secure_file_priv的值为具体目录 ,表示限制mysqld 的导入/导出只能发生在具体目录下 当secure_file_priv的值没有具体值时,表示不对mysqld 的导入|导出做限制 如何查看secure-file-priv参数的值:
show global variables ike '%secure%' ;
解决问题:
windows下:修改my.ini (一般在mysql的安装路径下,如果没有my.ini文件参考官方说明)在[mysqld]下方加入secure-file-priv=你的路径(路径中\
要以/
来代替否则会出错)
然后重启mysql(参考命令)
再查询secure-file-priv
扫码关注腾讯云开发者
领取腾讯云代金券
Copyright © 2013 - 2025 Tencent Cloud. All Rights Reserved. 腾讯云 版权所有
深圳市腾讯计算机系统有限公司 ICP备案/许可证号:粤B2-20090059 深公网安备号 44030502008569
腾讯云计算(北京)有限责任公司 京ICP证150476号 | 京ICP备11018762号 | 京公网安备号11010802020287
Copyright © 2013 - 2025 Tencent Cloud.
All Rights Reserved. 腾讯云 版权所有