查询语句 into outfile '输出文件路径'
例如:
select id,name from articles into outfile '/tmp/sample.xls'
如果遇到到错误:
1290 - The MySQL server is running with the --secure-file-priv option so it cannot execute this stat...
这是因为没有设置secure-file-priv变量或者此变量路径非查询输出路径 我们配置一下MySQL的配置文件即可
不知道配置文件位置,可以参考这篇文章:查看MySQL文件位置和加载顺序
打开配置文件后,找到 [mysqld]
,在其下添加或修改如下内容
secure-file-priv='你要输出的文件路径'
例如:
secure-file-priv='/tmp'
然后就OK了
viencoding.com版权所有,允许转载,但转载请注明出处和原文链接: https://viencoding.com/article/101