Re: Fw: Retornar Conjunto de Registros

From: "Jaime Casanova" <systemguards(at)gmail(dot)com>
To: "Alexander Quilca" <alquilca(at)hotmail(dot)com>
Cc: pgsql-es-ayuda(at)postgresql(dot)org
Subject: Re: Fw: Retornar Conjunto de Registros
Date: 2006-09-05 02:18:36
Message-ID: c2d9e70e0609041918v54115cb0jfa367a6b46c55449@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-es-ayuda

On 9/4/06, Alexander Quilca <alquilca(at)hotmail(dot)com> wrote:
> Jaime, estoy deacuerdo con tu solucion.
>
> --create or replace function mostrar_cabnec()
> -- returns SETOF "public"."CAB_NEC" as $$
> -- select * from "public"."CAB_NEC"
> --$$ language 'sql';
> pero esto solo funciona para una sola tabla, como hago en el caso de que
> tenga que devolver datos de multiples tablas, en mi caso CAB_NEC y DET_NEC.
>
> gracias.
>
>

en ese caso declaras el returns de la funcion como "setof record" y le
haces caso al error que te dio tu funcion original:

> "ERROR: a column definition list is required for functions returning
> "record" "

es decir llamas a la funcion asi: select * from prueba() as (col1
type1 [, ...])

--
Atentamente,
Jaime Casanova

"Programming today is a race between software engineers striving to
build bigger and better idiot-proof programs and the universe trying
to produce bigger and better idiots.
So far, the universe is winning."
Richard Cook

In response to

Browse pgsql-es-ayuda by date

  From Date Subject
Next Message Alvaro Herrera 2006-09-05 02:49:06 Re: Fw: Retornar Conjunto de Registros
Previous Message Alexander Quilca 2006-09-05 01:51:24 Fw: Retornar Conjunto de Registros