How to return SETOF RECORD?

From: Torsten Zühlsdorff <foo(at)meisterderspiele(dot)de>
To: pgsql-general(at)postgresql(dot)org
Subject: How to return SETOF RECORD?
Date: 2009-05-04 09:50:53
Message-ID: gtmdq0$fui$1@news.motzarella.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Hello,

i'm writting some functions for parsing urls and handling strings. But i
have problems with the result set.

I already figured out how to return a single record/row. But i need
more. A good example for what i want is ts_debug();

cse=> SELECT alias, token from
ts_debug('http://www.postgresql.org/docs/index.html');
alias | token
----------+------------------------------------
protocol | http://
url | www.postgresql.org/docs/index.html
host | www.postgresql.org
url_path | /docs/index.html

I try to get an output like that:
cse=> SELECT alias, token from
parse_uri('http://www.postgresql.org/docs/index.html');
alias | token
----------+------------------------------------
scheme | http://
url | www.postgresql.org/docs/index.html
host | www.postgresql.org
path | /docs/
file | index.html

But i never get more than one row return. I need a hint how i can return
more than one row. Or even better: a littel example ;)

Thanks very much and greetings from Germany,
Torsten

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Allan Kamau 2009-05-04 10:09:53 Re: Calculating product from rows - (aggregate product ) [solution found, thanks Andreas]
Previous Message A. Kretschmer 2009-05-04 08:42:01 Re: Calculating product from rows - (aggregate product )