把mysql的數據導出成txt
select a from b into outfile '/sqlfile/a.txt'; my.ini里需要設置secure_file_priv = d:/sqlfile; linux中是/etc/my.conf,必須導出到配置的地方,導出到其他地方會報錯; Query OK, 2kw rows affected (1 min 33.86 sec)
速度還是挺快的;
如果導出到其他路徑,會出現:
ERROR 1290 (HY000): The MySQL server is running with the --secure-file-priv option so it cannot execute this statement
提示;
mysql執行一個sql語句:
nohup mysql -uroot -proot -Dtest</home/root/test.mysql & # -D表示使用的數據庫
