delimiter /
create trigger nuovoattore
after insert on attori
for each row
when ( 1970 > ( select year(AnnoNascita)
from attori
where cod_attore=new.cod_attore))
begin
delete from attori
where cod_attore=new.cod_attore;
end;/
问问题
34 次