Skip to content
Advertisement

Failed to insert record and return id

I have a query that returns its id after adding

When executing the request, an error occurs: ERROR: query has no destination for result data CONTEXT: PL/pgSQL function inline_code_block line 3 at SQL statement SQL state: 42601. The request is successful without RETURNING COMMENT_ID;.

Why the request is not executed with RETURNING COMMENT_ID;?

Advertisement

Answer

In PL/pgSQL returning values have to be assigned to a variable with the keyword INTO, see:
https://www.postgresql.org/docs/9.4/plpgsql-statements.html#PLPGSQL-STATEMENTS-SQL-ONEROW

Edit

Or you could use the RETURN QUERY syntax:

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement