主頁(yè) > 知識(shí)庫(kù) > 細(xì)說(shuō)mysql replace into用法

細(xì)說(shuō)mysql replace into用法

熱門標(biāo)簽:曲靖移動(dòng)外呼系統(tǒng)公司 南昌三維地圖標(biāo)注 電話外呼系統(tǒng)改號(hào) 啥是企業(yè)400電話辦理 百應(yīng)電話機(jī)器人優(yōu)勢(shì) 武漢網(wǎng)絡(luò)外呼系統(tǒng)服務(wù)商 地圖標(biāo)注費(fèi)用是多少 外呼系統(tǒng)打電話上限是多少 怎樣在地圖標(biāo)注銷售區(qū)域

replace語(yǔ)句在一般的情況下和insert差不多,但是如果表中存在primary 或者unique索引的時(shí)候,如果插入的數(shù)據(jù)和原來(lái)的primary key或者unique相同的時(shí)候,會(huì)刪除原來(lái)的數(shù)據(jù),然后增加一條新的數(shù)據(jù),所以有的時(shí)候執(zhí)行一條replace語(yǔ)句相當(dāng)于執(zhí)行了一條delete和insert語(yǔ)句。直接上實(shí)例吧:

新建一個(gè)test表,三個(gè)字段,id,title,uid,  id是自增的主鍵,uid是唯一索引;

CREATE TABLE `test` (
 `Id` int(11) NOT NULL AUTO_INCREMENT,
 `title` varchar(25) DEFAULT NULL COMMENT '標(biāo)題',
 `uid` int(11) DEFAULT NULL COMMENT 'uid',
 PRIMARY KEY (`Id`),
 UNIQUE KEY `uid` (`uid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

insert into test(title,uid) VALUES ('你好','1');
insert into test(title,uid) VALUES ('國(guó)慶節(jié)','2');

結(jié)果如下:

使用 replace into插入數(shù)據(jù)時(shí):

REPLACE INTO test(title,uid) VALUES ('這次是8天假哦','3');

當(dāng)uid存在時(shí),使用replace into 語(yǔ)句

REPLACE INTO test(title,uid) VALUES ('這是Uid=1的第一條數(shù)據(jù)哦','1');

沒(méi)有預(yù)料到 MySQL 在數(shù)據(jù)沖突時(shí)(也就是uid發(fā)生重復(fù)數(shù)據(jù)時(shí))實(shí)際上是刪掉了舊記錄,再寫入新記錄,。通過(guò)以上實(shí)例,相信博友們可以看出:

replace into 跟 insert 功能類似,不同點(diǎn)在于:replace into 首先嘗試插入數(shù)據(jù)到表中,

 1. 如果發(fā)現(xiàn)表中已經(jīng)有此行數(shù)據(jù)(根據(jù)主鍵或者唯一索引判斷)則先刪除此行數(shù)據(jù),然后插入新的數(shù)據(jù)。 2. 否則,直接插入新數(shù)據(jù)。

要注意的是:插入數(shù)據(jù)的表必須有主鍵或者是唯一索引!否則的話,replace into 會(huì)直接插入數(shù)據(jù),這將導(dǎo)致表中出現(xiàn)重復(fù)的數(shù)據(jù)。

MySQL replace into 有三種形式:

1. replace into tbl_name(col_name, ...) values(...)

2. replace into tbl_name(col_name, ...) select ...

3. replace into tbl_name set col_name=value, ...

第一種形式類似于insert into的用法,

第二種replace select的用法也類似于insert select,這種用法并不一定要求列名匹配,事實(shí)上,MYSQL甚至不關(guān)心select返回的列名,它需要的是列的位置。例如,replace into tb1( name, title, mood) select rname, rtitle, rmood from tb2;?這個(gè)例子使用replace into從?tb2中將所有數(shù)據(jù)導(dǎo)入tb1中。

第三種replace set用法類似于update set用法,使用一個(gè)例如“SET col_name = col_name + 1”的賦值,則對(duì)位于右側(cè)的列名稱的引用會(huì)被作為DEFAULT(col_name)處理。因此,該賦值相當(dāng)于SET col_name = DEFAULT(col_name) + 1。

前兩種形式用的多些。其中 “into” 關(guān)鍵字可以省略,不過(guò)最好加上 “into”,這樣意思更加直觀。另外,對(duì)于那些沒(méi)有給予值的列,MySQL 將自動(dòng)為這些列賦上默認(rèn)值。

您可能感興趣的文章:
  • mysql 中 replace into 與 insert into on duplicate key update 的用法和不同點(diǎn)實(shí)例分析
  • Mysql中replace與replace into的用法講解
  • mysql 的replace into實(shí)例詳解
  • MySQL replace into 語(yǔ)句淺析(二)
  • MySQL replace into 語(yǔ)句淺析(一)
  • MySQL中replace into語(yǔ)句的用法詳解
  • 淺析MySQL replace into 的用法
  • MySQL的Replace into 與Insert into on duplicate key update真正的不同之處
  • MySQL中REPLACE INTO和INSERT INTO的區(qū)別分析
  • MySQL Replace INTO的使用

標(biāo)簽:吉林 滄州 黑河 隨州 錦州 資陽(yáng) 荊州 甘南

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《細(xì)說(shuō)mysql replace into用法》,本文關(guān)鍵詞  細(xì)說(shuō),mysql,replace,into,用法,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問(wèn)題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無(wú)關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《細(xì)說(shuō)mysql replace into用法》相關(guān)的同類信息!
  • 本頁(yè)收集關(guān)于細(xì)說(shuō)mysql replace into用法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章