程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> MySQL導出指定表中的數據

MySQL導出指定表中的數據

編輯:MySQL綜合教程

MySQL導出指定表中的數據   要求: 1. 不導出創表的語句,因為表已經建好:默認會導出,先drop table然後create table; 2. 導出的insert語句加上ignore,允許重復執行:默認不會加上ignore; 3. insert語句中列出表中的字段,看得更清楚:默認不會;  www.2cto.com   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 保存到文件    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

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved