Re: output inserted - Mailing list pgsql-general

From David Johnston
Subject Re: output inserted
Date
Msg-id 024d01cdc7ef$1f38cde0$5daa69a0$@yahoo.com
Whole thread Raw
In response to output inserted  (Peter Kroon <plakroon@gmail.com>)
List pgsql-general

From: pgsql-general-owner@postgresql.org [mailto:pgsql-general-owner@postgresql.org] On Behalf Of Peter Kroon
Sent: Wednesday, November 21, 2012 8:41 AM
To: pgsql-general@postgresql.org
Subject: [GENERAL] output inserted

 

How to I output the insert in PostgreSQL?

 

DROP TABLE IF EXISTS a_001;

CREATE TEMP TABLE a_001(

          vl text

);

DROP TABLE IF EXISTS a_002;

CREATE TEMP TABLE a_002(

          vl text

);

 

INSERT INTO a_001

OUTPUT INSERTED.* INTO a_002 --mssql

SELECT 'text for insertion';

 

SELECT vl FROM a_002;

 

 

My best guess, since I can only infer what that particular syntax means, is that you have to put an AFTER INSERT TRIGGER on table a_001.

 

David J.

 

 

pgsql-general by date:

Previous
From: Ryan Kelly
Date:
Subject: Re: output inserted
Next
From: Alban Hertroys
Date:
Subject: Re: ERROR: volatile EquivalenceClass has no sortref