Re: Generic/Common trigger - Mailing list pgsql-general

From
Subject Re: Generic/Common trigger
Date
Msg-id 33409.203.122.31.2.1093883874.squirrel@mail.trade-india.com
Whole thread Raw
In response to Generic/Common trigger  (Josué Maldonado <josue@lamundial.hn>)
List pgsql-general
Yes.

CREATE FUNCTION "last_updated" () RETURNS TRIGGER AS '
        BEGIN
                NEW.stamp = now();
                RETURN NEW;
        END;
' LANGUAGE 'plpgsql';


CREATE TRIGGER update_stamp AFTER UPDATE OR INSERT ON table FOR EACH ROW EXECUTE PROCEDURE
last_updated();
regds
mallah.


> Hello list,
>
> Is there a way to write a common/generic trigger function for multiple  tables to save in a
> column (stamp) the last time a row was inserted or  modified.
>
>
> --
> Sinceramente,
> Josué Maldonado.
>
> "Tiene la ciencia sus hipócritas, no menos que la virtud, y no menos es  engañado el vulgo por
> aquéllos que por éstos. Son muchos los indoctos  que pasan plaza de sabios." Jerónimo Feijoo.
> Escritor español.
>
> ---------------------------(end of broadcast)--------------------------- TIP 7: don't forget to
> increase your free space map settings
>
> !DSPAM:4133576a86001177520034!



-----------------------------------------
Over 1,00,000 exporters are waiting for your order! Click below to get
in touch with leading Indian exporters listed in the premier
trade directory Exporters Yellow Pages.
http://www.trade-india.com/dyn/gdh/eyp/



pgsql-general by date:

Previous
From: Daniel Schuchardt
Date:
Subject: Re: European dates with Win32 version
Next
From: "Thomas Chille"
Date:
Subject: aggregates with complex type as state and init condition