首頁  >  文章  >  資料庫  >  MySQL如何匯出指定表中的數據

MySQL如何匯出指定表中的數據

黄舟
黄舟原創
2017-09-11 11:10:561586瀏覽

這篇文章主要介紹了詳解MySQL導出指定表中的資料的實例的相關資料,希望透過本文能幫助到大家,需要的朋友可以參考下

##詳解MySQL導出指定表中的資料

要求:

#1. 不匯出創表的語句,因為表格已經建好:預設會匯出,先drop table然後create table;

2. 匯出的insert語句加上ignore,允許重複執行:預設不會加上ignore;
3. insert語句中列出表格中的字段,看得更清楚:預設不會;
4. 分記錄產生多個insert語句,修改起來比較容易:預設是一條; 

最終結果如下:


##

mysqldump -pxxxxxx qzt qf1_mail_account --no-create-info --insert-ignore --complete-insert --skip-extended-insert >qf1_mail_account.sql

其中:


-pxxxxxx 指定密碼

qzt 資料庫名稱

qf1_mail_account 表名
>qf1_mail_account.sql 儲存到檔案 


mysqldump --help 寫


 -t, --no-create-info 
           Don't write table creation info.
 --insert-ignore   Insert rows with INSERT IGNORE.
 -c, --complete-insert 
           Use complete insert statements.
 -e, --extended-insert 
           Use multiple-row INSERT syntax that include several
           VALUES lists.
           (Defaults to on; use --skip-extended-insert to disable.)

以上是MySQL如何匯出指定表中的數據的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn