MySQL匯出指定表中的資料

2021-12-30 08:42:05 字數 947 閱讀 9964

mysql匯出指定表中的資料

要求:1. 不匯出創表的語句,因為表已經建好:缺省會匯出,先drop table然後create table;

2. 匯出的insert語句加上ignore,允許重複執行:預設不會加上ignore;

3. insert語句中列出表中的字段,看得更清楚:預設不會;  www.2cto.com  

4. 分記錄生成多條insert語句,修改起來比較容易:預設是一條;

最終結果如下:

mysqldump -p****** qzt qf1_mail_account --no-create-info --insert-ignore

--complete-insert --skip-extended-insert >qf1_mail_account.sql

其中:-p****** 指定密碼

qzt 資料庫名

qf1_mail_account 表名

>qf1_mail_account.sql 儲存到檔案

www.2cto.com  

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.)  

作者 codingstandards

mysql匯出指定欄位或指定資料到檔案中

使用mysqldump把mysql資料庫的資料匯出到檔案中還是挺方便的 比如說要匯出baijunyao資料庫 mysqldump u使用者名稱 p 資料庫名 表名 匯出的檔名 mysqldump uroot p baijunyao baijunyao.sql bash copy 匯出baijunya...

mysql匯出指定欄位或指定資料到檔案中

使用mysqldump把mysql資料庫的資料匯出到檔案中還是挺方便的 比如說要匯出baijunyao資料庫 mysqldump u使用者名稱 p 資料庫名 表名 匯出的檔名 mysqldump uroot p baijunyao baijunyao.sql bash copy 匯出baijunya...

mysql匯出指定欄位或指定資料到檔案中

使用mysqldump把mysql資料庫的資料匯出到檔案中還是挺方便的 比如說要匯出baijunyao資料庫 mysqldump u使用者名稱 p 資料庫名 表名 匯出的檔名 mysqldump uroot p baijunyao baijunyao.sql bash 匯出baijunyao資料庫中...