PL/pgSQL Returns SetOf

Summary: in this tutorial, you will learn how to use the returns setof option to define a function that returns one or more rows.

Defining a function with returns setof option

PostgreSQL functions allow you to encapsulate reusable logic within the database. To return one or more rows from a function, you can use the returns setof option.

The returns setof option allows you to return one or more rows with a predefined structure from a function.

Here’s the syntax for creating a function that returns a set of rows:

create or replace function function_name(parameters)
returns setof row_structure
as
$$
   -- logic
   -- ...
   -- return one or more rows
   return query select_query;
$$ language plpgsql;Code language: SQL (Structured Query Language) (sql)

In this syntax:

  • First, specify the function name after the create or replace function keywords.
  • Second, use the returns setof with a predefined row structure. The row structure can be a composite type defined in the database.
  • Third, return rows inside the function body using the return query statement followed by a select statement.

Calling the function

To call a function with the returns setof, you use the following statement:

SELECT function_name(argument);Code language: SQL (Structured Query Language) (sql)

It’ll return a single column containing an array of all columns of the returned rows.

To retrieve data from a specific column of the return rows, you specify the dot (.) and column name after the function call:

SELECT (function_name(argument)).column_name;Code language: SQL (Structured Query Language) (sql)

If you want to retrieve data from all columns of the returned rows, you can use the .* like this:

SELECT (function_name(argument)).*;Code language: SQL (Structured Query Language) (sql)

Alternatively, you can call the function using the SELECT...FROM statement:

SELECT * FROM function_name(argument);Code language: SQL (Structured Query Language) (sql)

PL/pgSQL Returns SetOf example

We’ll use the film table from the sample database for the demonstration.

Film table

First, define a function that retrieves a film by its id from the film table:

create or replace function find_film_by_id(
	p_id int
)
returns setof film
as
$$
begin
   return query select * from film
   where film_id = p_id;
end;
$$
language plpgsql;Code language: SQL (Structured Query Language) (sql)

Second, call the find_film_by_id() function:

SELECT find_film_by_id(100);Code language: SQL (Structured Query Language) (sql)

Output:


                                   find_film_by_id

------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
 (100,"Brooklyn Desert","A Beautiful Drama of a Dentist And a Composer who must Battle a Sumo Wrestler in The First Manned Space Station",2006,1,7,4.99,161,21.99,R,"2013-05-26 14:50:58.951",{Commentaries},"'battl':14 'beauti':4 'brooklyn':1 'compos':11 'dentist':8 'desert':2 'drama':5 'first':20 'man':21 'must':13 'space':22 'station':23 'sumo':16 'wrestler':17")
(1 row)Code language: SQL (Structured Query Language) (sql)

The output is an array that contains column data.

Third, retrieve the title of the film with id 100:

select (find_film_by_id(100)).title;Code language: SQL (Structured Query Language) (sql)

Output:

      title
-----------------
 Brooklyn Desert
(1 row)Code language: SQL (Structured Query Language) (sql)

Fourth, retrieve the data from all columns of the returned row:

SELECT * FROM find_film_by_id(100);Code language: SQL (Structured Query Language) (sql)

Output:

-[ RECORD 1 ]----+--------------------------------------------------------------------------------------------------------------------------------------------------------------
film_id          | 100
title            | Brooklyn Desert
description      | A Beautiful Drama of a Dentist And a Composer who must Battle a Sumo Wrestler in The First Manned Space Station
release_year     | 2006
language_id      | 1
rental_duration  | 7
rental_rate      | 4.99
length           | 161
replacement_cost | 21.99
rating           | R
last_update      | 2013-05-26 14:50:58.951
special_features | {Commentaries}
fulltext         | 'battl':14 'beauti':4 'brooklyn':1 'compos':11 'dentist':8 'desert':2 'drama':5 'first':20 'man':21 'must':13 'space':22 'station':23 'sumo':16 'wrestler':17Code language: SQL (Structured Query Language) (sql)

Note that we use \x command in psql to display the result set vertically.

Summary

  • Use the returns setof to return one or more rows from a function.
Was this tutorial helpful ?