Re: how to tell if column set on update - Mailing list pgsql-sql

From nha
Subject Re: how to tell if column set on update
Date
Msg-id 4A6506A7.10809@free.fr
Whole thread Raw
In response to how to tell if column set on update  (chester c young <chestercyoung@yahoo.com>)
List pgsql-sql
Hello,

Le 20/07/09 15:19, chester c young a écrit :
> within a trigger need to know if the UPDATE statement set a column.  the column might be set to the old value or a
differentvalue.
 
> 
> (want to make sure the app is sending all necessary values)
> 
> thanks
> 

If the column to test is known -- e.g. column MyCol --, NEW.MyCol and
OLD.MyCol -- respectively value of MyCol after UPDATE and value of MyCol
before UPDATE -- can be compared.

I may be wrong if you are looking for the column(s) that are really
updated, not if such a column is updated or not. In this case, each
column of the target table may be tested with their respective new and
old values as well.

Regards.
--
nha / Lyon / France.


pgsql-sql by date:

Previous
From: Marcin Stępnicki
Date:
Subject: Re: unused columns in copy
Next
From: nha
Date:
Subject: Re: unused columns in copy