create trigger calculation after insert on employee
for each row
begin
if :new.updated_sal is null
then
update employee set updated_sal= (10/100)* salary
where id=:new.id;
end if;
end;
我想在员工表上创建一个触发器,每当在同一个表中插入一条新记录时,应该计算工资列中工资的 10% 并将其放入另一列 updated_sal 中。如果我尝试插入一条新记录,则表明该表已发生变异等