PostgreSQL - Triggers in PostgreSQL
You created this trigger:
But when updating the view, you get:
What is the likely cause?
CREATE TRIGGER trg_instead_of_update INSTEAD OF UPDATE ON v_emp FOR EACH ROW EXECUTE FUNCTION trg_v_emp_update();
But when updating the view, you get:
ERROR: function trg_v_emp_update() does not existWhat is the likely cause?
