Ferindo Middleton Jr <[EMAIL PROTECTED]> writes: > Is it possible to have a single trigger on multiple tables > simultaneously? Example:
> CREATE TRIGGER emp_cust_stamp BEFORE INSERT OR UPDATE ON employees, customers > FOR EACH ROW EXECUTE PROCEDURE last_updated_stamp(); No. You can use the same function for multiple triggers, but you have to CREATE TRIGGER for each table separately. regards, tom lane ---------------------------(end of broadcast)--------------------------- TIP 3: Have you checked our extensive FAQ? http://www.postgresql.org/docs/faq