Re: [SQL] CREATE RULE ON UPDATE/DELETE - Mailing list pgsql-hackers

From Aasmund Midttun Godal
Subject Re: [SQL] CREATE RULE ON UPDATE/DELETE
Date
Msg-id 20011021222604.6211.qmail@ns.krot.org
Whole thread Raw
In response to Re: [SQL] CREATE RULE ON UPDATE/DELETE  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: [SQL] CREATE RULE ON UPDATE/DELETE  (Bruce Momjian <pgman@candle.pha.pa.us>)
List pgsql-hackers
Yes, I agree perfectly... I never thought of that! I would really like it if some more info was added to the docs
regardinginfo on rules and triggers. The section on update rules is quite good, but some more would never hurt. One
pointin the trigger vs rules section which at least to me is very important is the simple fact that you cannot have a
triggeron a select... Ok I understand why - but it took some time...
 

Thank you for answering my questions!

regards,

Aasmund.
On Sun, 21 Oct 2001 12:47:41 -0400, Tom Lane <tgl@sss.pgh.pa.us> wrote:
> Joel Burton <joel@joelburton.com> writes:
> 
> 
> Surely you'd need something like
> 
> CREATE RULE dbl_update AS ON UPDATE TO dbl DO INSTEAD UPDATE raw SET
> id = NEW.id / 2, name = NEW.name WHERE OLD.id = id * 2;
> 
> (untested...)
> 
>             regards, tom lane

Aasmund Midttun Godal

aasmund@godal.com - http://www.godal.com/
+47 40 45 20 46


pgsql-hackers by date:

Previous
From: mcarthey@execpc.com (Mark)
Date:
Subject: dynamic #include's?
Next
From: san@cobalt.rmnet.it
Date:
Subject: PL/pgSQL triggers ON INSERT OR UPDATE