溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

MySQL中怎么導(dǎo)出指定表中的數(shù)據(jù)

發(fā)布時(shí)間:2021-08-04 17:17:39 來(lái)源:億速云 閱讀:514 作者:Leah 欄目:數(shù)據(jù)庫(kù)

今天就跟大家聊聊有關(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è)資訊頻道,感謝大家的支持。

向AI問(wèn)一下細(xì)節(jié)

免責(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)容。

AI