mysql中常用的三種插入資料的語句

2021-07-02 20:02:45 字數 926 閱讀 4537

mysql中常用的三種插入資料的語句:

insert into表示插入資料,資料庫會檢查主鍵(primarykey),如果出現重複會報錯;

replace into表示插入替換資料,需求表中有primarykey,或者unique索引的話,如果資料庫已經存在資料,則用新資料替換,如果沒有資料效果則和insert into一樣;

replace語句會返回乙個數,來指示受影響的行的數目。該數是被刪除和被插入的行數的和。如果對於乙個單行replace該數為1,則一行被插入,同時沒有行被刪除。如果該數大於1,則在新行被插入前,有乙個或多個舊行被刪除。如果表包含多個唯一索引,並且新行複製了在不同的唯一索引中的不同舊行的值,則有可能是乙個單一行替換了多個舊行。

insert ignore表示,如果中已經存在相同的記錄,則忽略當前新資料;

下面通過**說明之間的區別,如下:

create table testtb(

id int not null primary key,

name varchar(50),

age int

);insert into 

testtb(id,name,age)values(1,"bb",13);

select * from testtb;

insert ignore into 

testtb(id,name,age)values(1,"aa",13);

select * from testtb;//仍是1,「bb」,13,因為id是主鍵,出現主鍵重複但使用了ignore,則錯誤被忽略

replace into 

testtb(id,name,age)values(1,"aa",12);

select * from testtb; //資料變為1,"aa",12

Spring中常用三種通知

1 前置通知 介面 org.springframework.aop.methodbeforeadvice 使用前置通知可以在聯結點執行前進行自定義的操作。不過,spring裡只有一種聯結點,即方法呼叫,所以前置通知事實上就是讓你能在方法呼叫前進行一些操作。前置通知可以訪問呼叫的目標方法,也可以對該方...

python中常用的三種線性回歸

from sklearn.linear model import linearregression import numpy as np import matplotlib.pyplot as plt x 1 4 3 輸入x y 3,5,3 輸入y lr linearregression fit x...

mysql中三種插入及區別

mysql中常用的三種插入資料的語句 insert into表示插入資料,資料庫會檢查主鍵,如果出現重複會報錯 replace into表示插入替換資料,需求表中有primarykey,或者unique索引,如果資料庫已經存在資料,則用新資料替換,如果沒有資料效果則和insert into一樣 in...