Trigger.. AFTER and BEFORE with specific column changed - Mailing list pgsql-general

From Albert
Subject Trigger.. AFTER and BEFORE with specific column changed
Date
Msg-id 1333305939444-5610712.post@n5.nabble.com
Whole thread Raw
Responses Re: Trigger.. AFTER and BEFORE with specific column changed  (Adrian Klaver <adrian.klaver@gmail.com>)
Re: Trigger.. AFTER and BEFORE with specific column changed  (Albert <oo_O2_oo@hotmail.com>)
List pgsql-general
*I'm trying to follow this :*


CREATE TRIGGER check_update
    *BEFORE* UPDATE ON accounts
    FOR EACH ROW
    WHEN (OLD.balance IS DISTINCT FROM NEW.balance)
    EXECUTE PROCEDURE check_account_update();

*but with AFTER instead of BEFORE. and I'm keep getting error on or near
WHEN.
does that because i have to use BEFORE ? what if i need to execute the
procedure after updating column and it has really changed.*

--
View this message in context:
http://postgresql.1045698.n5.nabble.com/Trigger-AFTER-and-BEFORE-with-specific-column-changed-tp5610712p5610712.html
Sent from the PostgreSQL - general mailing list archive at Nabble.com.

pgsql-general by date:

Previous
From: Albert
Date:
Subject: Re: PostgreSQL Trigger and rows updated
Next
From: Jerry Sievers
Date:
Subject: Parameter setting in multi-statement command; I got bit today