-1

如何创建触发器 MySQL 以更新员工表中的薪水并将薪水列中的旧值替换为 old_salary 列?

4

1 回答 1

0

请参阅CREATE TRIGGER 语法

create trigger salary_trigger
    before update on employee
    for each row begin
        if new.salary != old.salary then
            set new.old_salary = old.salary
        end if;
    end;
于 2012-10-30T14:05:33.270 回答