Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6635683
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T23:05:10+00:00 2026-05-25T23:05:10+00:00

I am using PostgreSQL 8.4 and I want to create a function that returns

  • 0

I am using PostgreSQL 8.4 and I want to create a function that returns a query with many rows.
The following function does not work:

create function get_names(varchar) returns setof record AS $$
declare
    tname alias for $1;
    res setof record;
begin
    select * into res from mytable where name = tname;
    return res;
end;
$$ LANGUAGE plpgsql;

The type record only allows single row.

How to return an entire query? I want to use functions as query templates.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-25T23:05:10+00:00Added an answer on May 25, 2026 at 11:05 pm
    CREATE OR REPLACE FUNCTION get_names(_tname varchar)
      RETURNS TABLE (col_a integer, col_b text) AS
    $func$
    BEGIN
       RETURN QUERY
       SELECT t.col_a, t.col_b  -- must match RETURNS TABLE
       FROM   mytable t
       WHERE  t.name = _tname;    
    END
    $func$  LANGUAGE plpgsql;
    

    Call like this:

    SELECT * FROM get_names('name')
    

    Major points:

    • Use RETURNS TABLE, so you don’t have to provide a list of column names with every call.

    • Use RETURN QUERY, much simpler.

    • Table-qualify column names to avoid naming conflicts with identically named OUT parameters (including columns declared with RETURNS TABLE).

    • Use a named variable instead of ALIAS. Simpler, doing the same, and it’s the preferred way.

    • A simple function like this could also be written in LANGUAGE sql:

    CREATE OR REPLACE FUNCTION get_names(_tname varchar)
      RETURNS TABLE (col_a integer, col_b text) AS
    $func$
    SELECT t.col_a, t.col_b  --, more columns - must match RETURNS above
    FROM   mytable t
    WHERE  t.name = $1;
    $func$ LANGUAGE sql;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I created a temp table in my PostgreSQL DB using the following query SELECT
Using PostgreSQL triggers, is it possible to record the changes that have happened to
I've been using PostgreSQL a little bit lately, and one of the things that
Just had a discussion at work about the merits of using PostgreSQL over MySQL
I am switching from using SQLite3 to PostgreSQL, and hoped that I could populate
is it possible to make something similar to the following with Postgresql without using
I've got a query that calls a function in its select clause. The function
I want to create some mad robust code. I want to take a query
How do you unit test your python DAL that is using postgresql. In sqlite
I want to create a view that will display interesting stuff about the system

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.