MySQL在触发INSERT ON DUPLICATE KEY UPDATE之前 - 手动似乎错了?

时间:2017-02-21 22:00:36

标签: mysql upsert

我正在使用MySQL 5.7:

D:\>mysql --version
mysql  Ver 14.14 Distrib 5.7.17, for Win64 (x86_64)

根据manual,BEFORE INSERT触发器的行为应该是:

  

BEFORE INSERT触发器为每一行激活,然后是a   AFTER INSERT触发器或BEFORE UPDATE和AFTER UPDATE   触发器,取决于该行是否有重复的键。

我认为这意味着无论是否存在重复键匹配都会执行BEFORE INSERT,而AFTER INSERT和UPDATE触发器取决于是否存在键冲突。 This SO重复同样的事情。但是,我没有看到这种行为。这是我做的:

create table testtable (
  id integer primary key auto_increment,
  nickname varchar(40),    -- this is the natural key to be unique indexed
  name varchar(40),
  uuid varchar(36));       -- this is what I want to assign in the trigger

alter table testtable add unique index testtable_ux (nickname);
create trigger testtable_uid before insert on testtable for each row set
  new.uuid=uuid();

-- get some data
insert into testtable (nickname, name) values ('bob', 'Robert'), 
  ('fred', 'Frederick'), ('cha', 'Chauncey');
select * from testtable;

1   bob   Robert      06fb18be-f87e-11e6-8e6f-0060737a7c01
2   fred  Frederick   06fb1a5d-f87e-11e6-8e6f-0060737a7c01
3   cha   Chauncey    06fb1aec-f87e-11e6-8e6f-0060737a7c01

很好 - 每个人都有一个独特的UUID。现在好了,根据手册,这个BEFORE INSERT触发器应该被执行,无论是否有重复的密钥,所以即使我得到重复的密钥更新,UUID也应该更新 - 对吗?我们来看看:

insert into testtable (nickname, name) values ('fred', 'Alfred') 
  on duplicate key update name='Alfred';
3   88  16:39:32 ... 2 row(s) affected  0.032 sec

select * from testtable;
1   bob   Robert      06fb18be-f87e-11e6-8e6f-0060737a7c01
2   fred  Alfred      06fb1a5d-f87e-11e6-8e6f-0060737a7c01
3   cha   Chauncey    06fb1aec-f87e-11e6-8e6f-0060737a7c01

嗯,名字已更新。让我们比较一下UUID:

2   fred  Frederick   06fb1a5d-f87e-11e6-8e6f-0060737a7c01
2   fred  Alfred      06fb1a5d-f87e-11e6-8e6f-0060737a7c01

按预期执行upsert,但未重新生成UUID。我用常量字符串尝试了这个并得到了相同的结果。

现在,这正是我想要发生的事情; BEFORE INSERT无论upsert的哪个分支被发生都会发生似乎没用,或者至少这种行为似乎更有用。但这似乎与手册所说的相反。任何见解?

1 个答案:

答案 0 :(得分:3)

BEFORE INSERT触发器在重复项上触发。您可以使用日志表进行测试。我已经在您的代码中添加了这样一个表,并修改了触发器以填充该表:

drop table if exists testtable;
create table testtable (
  id integer primary key auto_increment,
  nickname varchar(40),    -- this is the natural key to be unique indexed
  name varchar(40),
  uuid varchar(36));       -- this is what I want to assign in the trigger

alter table testtable add unique index testtable_ux (nickname);

drop table if exists testlog;
create table testlog (
  log_id int primary key auto_increment,
  nickname varchar(40),
  name varchar(40),
  uuid varchar(36)
);

drop trigger if exists testtable_uid;
delimiter //
create trigger testtable_uid before insert on testtable for each row
begin
  set new.uuid=uuid();
  insert into testlog (nickname, name, uuid) values (new.nickname, new.name, new.uuid);
end //
delimiter ;

insert into testtable (nickname, name) values ('bob', 'Robert'), 
  ('fred', 'Frederick'), ('cha', 'Chauncey');
select * from testtable;

insert into testtable (nickname, name) values ('fred', 'Alfred') 
  on duplicate key update name='Alfred';

select * from testtable;
select * from testlog;

您将看到testlog表有4行。最后一个包含' fred',' Alfred'和一个新的UUID。这意味着触发器已被触发。这也意味着已经生成了一个新的UUID。但该UUID未分配给testtable.uuid。您的代码中没有任何内容可以告诉您这样做。

如果您希望在ON DUPLICATE部分中分配新的UUID(在触发器中生成),您可以使用values(uuid)访问它:

insert into testtable (nickname, name) values ('fred', 'Alfred') 
  on duplicate key update 
    name='Alfred',
    `uuid`=values(`uuid`);