create trigger tri_add
before insert
on teacher_manager
for each row
begin 
insert into school values ('ww','ee');
end tri_add;