Re: PL/PGSQL Record type question

From: Robins <tharakan(at)gmail(dot)com>
To: Gábriel Ákos <akos(dot)gabriel(at)i-logic(dot)hu>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: PL/PGSQL Record type question
Date: 2007-05-11 17:39:08
Message-ID: 36af4bed0705111039r561f1c3bod9183535ed86763@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Hi Gabriel,

There are two ways to do this:
1. Imad's way (Define the function with the return type as RECORD). Its only
problem is that while querying from this function, you need to give a proper
SELECT query or else PG returns an error.

e.g. As Imad gives in his example ...

CREATE FUNCTION xyz() RETURNS record AS
$$
declare
abc RECORD;
begin
abc := (1, 2);
return abc;
end;
$$
language plpgsql;

And execute the function in this fashion:

select a, b from xyz() as (a int, b int);

The only problem with this is that if you have 6 elements your select
statement becomes quite long. Also, in case your function return parameter
count changes, or its types change, you would need to change the SELECT SQL
at all the places.

2. Define a TYPE as John mentioned, and set the function's return type as
this TYPE. The advantage is that you can always redefine the function and
the type in case the return parameters are changing and that your select
statement is a simple SELECT * from fn().

Personally, I have tried both and believe the second way (TYPE) is quite
convenient for me.

Regards,
Robins Tharakan

On 5/11/07, Gábriel Ákos <akos(dot)gabriel(at)i-logic(dot)hu> wrote:
>
> Hi,
>
> How should I define a record type (there is no table with this record
> type) programmatically in pl/pgsql?
> I'd like to return a record with 3 string elements, 2 integers and 1
> date.
>
> Rgds,
> Akos
>
>
>
> --
> Üdvözlettel,
> Gábriel Ákos
> -=E-Mail :akos(dot)gabriel(at)i-logic(dot)hu|Web: http://www.i-logic.hu =-
> -=Tel/fax:+3612367353 |Mobil:+36209278894 =-
>
> ---------------------------(end of broadcast)---------------------------
> TIP 2: Don't 'kill -9' the postmaster
>

--
Robins

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message imad 2007-05-11 18:19:52 Re: PL/PGSQL Record type question
Previous Message imad 2007-05-11 16:40:34 Re: PL/PGSQL Record type question