MySQL的Update语句Set顺序问题

1. 测试一
create table test(id int,  tag int, num int);

insert into test (id, tag, num) values(1, 1, 1), (2,2, 2), (3,3,3);

update test 
set tag = 4, num=case when tag=4 then 4 else 3 end
where tag=3;

select * from test;

(1)sqlserver2014的结果:
MySQL的Update语句Set顺序问题

(2)MySQL的结果:
MySQL的Update语句Set顺序问题


2. 测试二:更换set语句的顺序
create table test(id int,  tag int, num int);

insert into test (id, tag, num) values(1, 1, 1), (2,2, 2), (3,3,3);

update test 
set num=case when tag=4 then 4 else 3 end, tag = 4
where tag=3;

select * from test;

(1)sqlserver2014的结果:
MySQL的Update语句Set顺序问题

(2)MySQL的结果
MySQL的Update语句Set顺序问题


结论:
(1)MySQL的update语句,set列的顺序是有关系的,后面列的计算是以前面列的结果为基础的,即从左向右评估;
(2)SQLServer的update语句,set的顺序无关,所有的更改都是基于之前取出的快照;


MySQL的Update语句Set顺序问题,布布扣,bubuko.com

MySQL的Update语句Set顺序问题

上一篇:重设Illustrator(AI)中变形边框控制网格和分割建立渐变网格的两种实例教程介绍


下一篇:利用Freehand创建字体发光特效