SQL - Triggers
This AFTER INSERT trigger fails to compile:
What is the most likely error?
CREATE TRIGGER trg AFTER INSERT ON orders FOR EACH ROW BEGIN INSERT INTO audit VALUES (NEW.id, CURRENT_TIMESTAMP); END;
What is the most likely error?
