這篇文章主要介紹了詳解MySQL導出指定表中的資料的實例的相關資料,希望透過本文能幫助到大家,需要的朋友可以參考下
##詳解MySQL導出指定表中的資料
要求:
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 指定密碼
qf1_mail_account 表名
>qf1_mail_account.sql 儲存到檔案
-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中文網其他相關文章!