1. 程式人生 > >linux 匯出sql查詢結果

linux 匯出sql查詢結果

匯出命令

mysql -h172.0.0.1 -uXXXX -pXXXX -P3306 -e”select * from user” > /temp/test.txt

  • 語法說明

-h :資料庫ip
-u :使用者名稱
-p:密碼
-P:埠
-e :sql語句,需要用引號包起來

  • 選擇資料庫

在sql裡面加個 use database(資料庫) 如:use test;select * from user

  • 匯出檔案

直接匯出test.txt會很慢,建議先壓縮 zip test.zip test.txt 將 test.txt壓縮為test.zip檔案

  • 下載檔案命令

sz test.zip