Tuesday, June 24, 2008

Re: [pgsql-es-ayuda] Ayuda con una funcion SQL

Gracias, me funcionó utilizando el UNION ALL y además de la forma que
calabazas me envió como ejemplo.

Gracias una vez más.


----- Original Message -----
From: "Calabaza" <calalinux@gmail.com>
To: <pgsql-es-ayuda@postgresql.org>
Sent: Monday, June 23, 2008 1:12 PM
Subject: Re: [pgsql-es-ayuda] Ayuda con una funcion SQL


2008/6/20 Juan Carlos Badillo Goy <badillo@cav.desoft.cu>:
> Ahora estoy tratando de hacer que una función me retorne lo siguiente: (la
> suma o union por asi decirlo de rs_tabla_1 y rs_tabla_2 )

Eso lo puedes hacer con una vista:

> CREATE OR REPLACE FUNCTION "public"."funct_resultante" (aid_usuario
> integer)
> RETURNS SETOF "public"."tabla_1" AS
> $body$
> declare rs_tabla_1 tabla_1%rowtype;
> declare rs_tabla_2 tabla_1%rowtype;
> begin
>
> for rs_tabla_1 in
> select * from rs_tabla_1 where propietario = aid_usuario and
> (tipo = 2 or tipo = 7)
> loop
> return next rs_tabla_1;
> end loop;
>
> for rs_tabla_2 in
> select * from rs_tabla_2 where propietario = aid_usuario and
> tipo
> = 9
> loop
> return next rs_tabla_2;
> end loop;
>
> return;
> end;
> $body$
> LANGUAGE 'plpgsql' VOLATILE CALLED ON NULL INPUT SECURITY INVOKER;

Imagino que las columnas que devuelven ambas tablas son de igual
cantidad y del mismo tipo :

Prueba esto:


Select * from
(
select * from rs_tabla_1 where propietario = 777 and (tipo = 2 or tipo = 7)
) as a
union
(
select * from rs_tabla_2 where propietario = 777 and tipo = 9
) as b

777 = tu identificador de usuario...

Date una vuelta por:
http://www.postgresql.org/docs/8.3/interactive/sql-select.html#SQL-UNION

Un abrazo...
--
§~^Calabaza^~§ from Villa Elisa, Paraguay
----------------
A hendu hína: 1864 - 1949 RICHARD STRAUSS - op.28, Till Eulenspiegels
lustige Striche
http://foxytunes.com/artist/1864+-+1949+richard+strauss/track/op.28%2c+till+eulenspiegels+lustige+striche
--
TIP 6: ¿Has buscado en los archivos de nuestra lista de correo?

http://archives.postgresql.org/pgsql-es-ayuda


--
TIP 10: no uses HTML en tu pregunta, seguro que quien responda no podrá leerlo

No comments: