Skip to content
Advertisement

Selecting and passing a record as a function argument

It may look like a duplicate of existing questions (e.g. This one) but they only deal with passing “new” arguments, not selecting rows from the database.

I have a table, for example:

And a function:

I would like to run it on data already existing in the database. It’s no problem if I would like to use it from another PL/pgSQL stored procedure, for example:

However, I have no idea how to do it using an “ordinary” query, e.g.

Is there a way to execute such query?

Advertisement

Answer

You need to pass a scalar record to that function, this requires to enclose the actual select in another pair of parentheses:

However the above will NOT work, because the function only expects a single column (a record of type my_table) whereas select * returns multiple columns (which is something different than a single record with multiple fields).

In order to return a record from the select you need to use the following syntax:

Note that this might still fail if you don’t make sure the select returns exactly one row.

If you want to apply the function to more than one row, you can do that like this:

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