1、.replace into 批量更新
replace into t_student(id,dr) values (1,'2'),(2,'3'),...(x,'y');
例子:
replace into t_student
(`id`,`author`,`createdtime`,`updatedtime`)
values
(1,'王五','2016-12-12 12:20','2016-12-12 12:20'),
(2,'張三','2016-12-12 12:20','2016-12-12 12:20');
2、insert into ...on duplicate key update批量更新
insert into t_student(id,dr) values (1,'2'),(2,'3'),...(x,'y') on duplicate key update dr=values(dr);
例子:
insert into t_student
(`id`,`author`,`createdtime`,`updatedtime`)
values
(1,'張三','2017-12-12 12:20','2017-12-12 12:20'),
(2,'王五','2017-12-12 12:20','2017-12-12 12:20')
on duplicate key update
author=values(author),
createdtime=values(createdtime),
updatedtime=values(updatedtime);
replace into 和 insert into on duplicate key update的不同在於:
replace into 操作本質是對重複的記錄先delete 後insert,如果更新的字段不全會將缺失的字段置為預設值,用這個要悠著點否則不小心清空大量資料可不是鬧著玩的。
insert into 則是只update重覆記錄,不會改變其它字段。
3.建立臨時表,先更新臨時表,然後從臨時表中update
create temporary table tmp(
id int(4) primary key,
dr varchar(50)
insert into tmp values (0,'gone'), (1,'xx'),...(m,'yy');
update
t_student, tmp
set
t_student.dr=tmp.dr
where
t_student.id=tmp.id;
注意:這種方法需要使用者有temporary 表的create 許可權。
4、使用mysql 自帶的語句構建批量更新
mysql 實現批量 可以用點小技巧來實現:
update t_stuent
set name= case id
when 1 then '趙六'
when 2 then '馬三'
when 3 then '王五'
endwhere id in (1,2,3)
這句sql 的意思是,更新dingdan 字段,如果id=1 則dingdan 的值為3,如果id=2 則dingdan 的值為4……
where部分不影響**的執行,但是會提高sql執行的效率。確保sql語句僅執行需要修改的行數,這裡只有3條資料進行更新,而where子句確保只有3行資料執行。
例子:update t_student
set author = case id
when 1 then '黃飛鴻'
when 2 then '方世玉'
when 3 then '洪熙官'
endwhere id in (1,2,3)
如果更新多個值的話,只需要稍加修改:
update categories
set dingdan = case id
when 1 then 3
when 2 then 4
when 3 then 5
end,
title = case id
when 1 then 'new title 1'
when 2 then 'new title 2'
when 3 then 'new title 3'
endwhere id in (1,2,3)
例子:update book
set author = case id
when 1 then '黃飛鴻2'
when 2 then '方世玉2'
when 3 then '洪熙官2'
end,
code = case id
when 1 then 'hfh2'
when 2 then 'fsy2'
when 3 then 'hxg2'
endwhere id in (1,2,3)
mysql的操作語句 MySQL操作語句
資料定義語句ddl mysql注釋 建立表 create table user id int primary key auto increment,username varchar 50 userid varchar 50 gender varchar 5 default 男 birthday va...
mysql操作語句 mysql常用操作語句
2.列出資料庫 3.選擇資料庫 use databases name 4.列出資料表 5.顯示 列的屬性 show columnsfromtable name describe table name 6.匯出整個資料庫 my例如 my 7.匯出乙個表 mysqldump u user name p ...
mybatis plus批量操作語句格式
insert into table1 name column1 column2 column3 columnn select column1 column2 column3 columnn from table2 name ch name,en name values set ch name en ...