Re: PGSQL returning into in insert statement - Mailing list pgsql-novice

From Tom Lane
Subject Re: PGSQL returning into in insert statement
Date
Msg-id 1352566.1596078339@sss.pgh.pa.us
Whole thread Raw
In response to PGSQL returning into in insert statement  (Chamath Sajeewa <csgsajeewa@gmail.com>)
Responses Re: PGSQL returning into in insert statement  (Chamath Sajeewa <csgsajeewa@gmail.com>)
List pgsql-novice
Chamath Sajeewa <csgsajeewa@gmail.com> writes:
> I want to use "returning into" in insert statement. I tried below,

> insert into test_table(key,value) values('key1',5) returning value into
> returnvalue;

> and below error occurred- syntax error at or near "into".

That is perfectly legit syntax within a plpgsql function, but it
would produce the mentioned syntax error if you tried to use it
directly at the SQL level.  So I conclude that you're fuzzy about
the difference between SQL and plpgsql.  You can use plpgsql
statements within plpgsql-language function definitions, and
within DO blocks.  But not as plain SQL.  (Plain SQL has no concept
of variables either, so "into returnvalue" makes no sense there
anyway.)

            regards, tom lane



pgsql-novice by date:

Previous
From: Chamath Sajeewa
Date:
Subject: PGSQL returning into in insert statement
Next
From: Chamath Sajeewa
Date:
Subject: Re: PGSQL returning into in insert statement