SQL - Triggers
You wrote this AFTER UPDATE trigger:
What problem will occur when you update an employee's salary?
CREATE TRIGGER trg AFTER UPDATE ON employees
BEGIN
UPDATE employees SET salary = salary * 1.1 WHERE id = NEW.id;
END;
What problem will occur when you update an employee's salary?
