Re: How to notice column changes in trigger - Mailing list pgsql-sql

From Aspire Something
Subject Re: How to notice column changes in trigger
Date
Msg-id 002001c2e78b$642e6df0$c9c832c0@societykotla
Whole thread Raw
In response to Re: How to notice column changes in trigger  (Christoph Haller <ch@rodos.fzk.de>)
Responses Re: How to notice column changes in trigger  (Andreas Pflug <Andreas.Pflug@web.de>)
List pgsql-sql
Hello Christoph Haller ,


> >
> > >So you want the trigger executed only if assignments to b and/or c do

Do sime thing like this  use if /then /esle s block for the problem

In the first if blick check that b and c is null by the declaration of 
IS NULL after that you run the update command as required 

The program code will show as

create function 
CREATE FUNCTION BLAH_FUNCTION() RETURNS "trigger"   AS ' 
usual blah blah of declre and all ,


IF NEW.b IS NULL and NEW.C IS NULL THEN
ROCK BABY
ELSE
Do OTHERWISE
END IF;
more blah blah plpgsql';



CREATE TRIGGER BLAH   BEFORE  UPDATE ON BLAH_TABLE   FOR EACH ROW   EXECUTE PROCEDURE BLAH_FUNCTION



Please revert back if this helps .


Regards
V Kashyap

> > >not appear within the update command. Right?
> > >
> >
> > Right, that's what I want.
> >
> I'm afraid I have no idea how to accomplish that.
> 
> Regards, Christoph
> 
> 
> 
> ---------------------------(end of broadcast)---------------------------
> TIP 4: Don't 'kill -9' the postmaster
> 



pgsql-sql by date:

Previous
From: Tom Lane
Date:
Subject: Re: explain (internal feature)
Next
From: "Objectz"
Date:
Subject: Re: Execution plan Question