mysql查詢結果匯出資料
阿新 • • 發佈:2019-01-11
mysql查詢結果匯出資料
Mysql資料庫從檔案匯入或匯出到檔案,提示The MySQL server is running with the –secure-file-priv option so it cannot execute this statement
解決辦法1
- mysql命令視窗輸入: show variables like ‘%secure%’;
- 匯出路徑為上圖的的路徑,該路徑為mysql預設的匯出路徑: select * from tablename into outfile’允許路徑/test.xls’
- mysql命令視窗輸入: show variables like ‘%secure%’;
解決辦法2: 修改my.ini配置,使得可以匯出到任意路徑
1、開啟my.ini,修改secure-file-priv值
刪除secure-file-priv前面路徑配置,修改為 secure-file-priv=
2、重啟 Mysql56服務
3 這樣就能匯出路徑不受限了
參考
[1]: http://blog.sina.com.cn/s/blog_59bba95d0102wspc.html 解決mysql資料匯入匯出提示secure-file-priv option問題
[2]: https://blog.csdn.net/h12kjgj/article/details/77187304 MYSQL匯出資料出現The MySQL server is running with the –secure-file-priv option
[3]: https://www.cnblogs.com/sophia194910/p/5541842.html net start mysql提示:服務名無效