2
Possible Duplicate:
MySQL Trigger to prevent INSERT under certain conditionsMySQL`BEFORE INSERT TRIGGER`如何在條件下跳過數據插入?
在MySQL BEFORE 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 ;
有什麼辦法來默默做到這一點? – eisberg
使用帶參數而不是觸發器的過程,並在條件後添加記錄。 – Devart
所以沒有辦法通過觸發器? – eisberg