From: | "Postgres User" <postgres(dot)developer(at)gmail(dot)com> |
---|---|
To: | pgsql-general <pgsql-general(at)postgresql(dot)org> |
Subject: | Re: Trigger transactions |
Date: | 2008-03-22 02:42:52 |
Message-ID: | b88c3460803211942m3205e22bhd24117af7780b482@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
Question answered- needed to move Insert statement before Update in
main function.
On Fri, Mar 21, 2008 at 6:42 PM, Postgres User
<postgres(dot)developer(at)gmail(dot)com> wrote:
> if a function includes this SQL:
>
> Update Table1 Set field_1 = 'ab';
> Insert Table2(field_2) VALUES('cd');
>
>
> and I create an update trigger on Table1:
>
> Create Trigger Table1_Update AFTER Update
> On Table1 FOR EACH ROW:
>
> Select * From Table2
>
>
> will the Select statement in the trigger see the row that I inserted
> in the main function?
> if not, is there another way to write these statements to that it does?
>
> thanks
>
From | Date | Subject | |
---|---|---|---|
Next Message | Ram Ravichandran | 2008-03-22 03:00:26 | Re: Postgresql partitioning |
Previous Message | Postgres User | 2008-03-22 01:42:13 | Trigger transactions |