您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關(guān)MySQL中怎么導(dǎo)出指定表中的數(shù)據(jù),可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。
MySQL導(dǎo)出指定表中的數(shù)據(jù)
要求:
1. 不導(dǎo)出創(chuàng)表的語(yǔ)句,因?yàn)楸硪呀?jīng)建好:默認(rèn)會(huì)導(dǎo)出,先drop table然后create table;
2. 導(dǎo)出的insert語(yǔ)句加上ignore,允許重復(fù)執(zhí)行:默認(rèn)不會(huì)加上ignore;
3. insert語(yǔ)句中列出表中的字段,看得更清楚:默認(rèn)不會(huì); www.2cto.com
4. 分記錄生成多條insert語(yǔ)句,修改起來(lái)比較容易:默認(rèn)是一條;
最終結(jié)果如下:
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
dump --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.)
看完上述內(nèi)容,你們對(duì)MySQL中怎么導(dǎo)出指定表中的數(shù)據(jù)有進(jìn)一步的了解嗎?如果還想了解更多知識(shí)或者相關(guān)內(nèi)容,請(qǐng)關(guān)注億速云行業(yè)資訊頻道,感謝大家的支持。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。