>  기사  >  데이터 베이스  >  MySQL导出指定表中的数据_MySQL

MySQL导出指定表中的数据_MySQL

WBOY
WBOY원래의
2016-06-01 13:42:301005검색

bitsCN.com 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.)  作者 codingstandards bitsCN.com

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.