可能重复:
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 ;