3

可能重复:
MySQL 触发器以防止在某些条件下插入

在 MySQLBEFORE INSERT TRIGGER中,如何在有条件的情况下跳过数据插入?

delimiter //
drop trigger if exists test_trigger //
create trigger test_trigger before insert on t
for each row
begin
  set @found := false;

  #Some code

  if @found then
    #How to skip the data insertion under condition?
  end if;
end   //

delimiter ;
4

1 回答 1

4

两种解决方案,都引发错误:

  1. 调用不存在的存储过程 -CALL non_existent_proc()
  2. 使用SIGNAL语句引发错误(MySQL 5.5)。

示例 1:

...
IF @found THEN
  CALL non_existent_proc();
END IF;
...

示例 2:

...
IF @found THEN
  SIGNAL SQLSTATE '02000' SET MESSAGE_TEXT = 'Wrong data';`
END IF;
...
于 2012-11-22T11:00:13.707 回答