From: | Guillermo Villanueva <guillermovil(at)gmail(dot)com> |
---|---|
To: | Emanuel Calvo <postgres(dot)arg(at)gmail(dot)com> |
Cc: | Alvaro Herrera <alvherre(at)alvh(dot)no-ip(dot)org>, pgsql-es-ayuda <pgsql-es-ayuda(at)postgresql(dot)org> |
Subject: | Re: mejorar performance de select |
Date: | 2011-05-27 14:02:46 |
Message-ID: | BANLkTi=5KoWZLCQz7skza9mAhfoJih3asQ@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-es-ayuda |
Siiii! Ahora si.
Muchas gracias
Saludos
~~~~~~~~~~~~~~~~
Guillermo Villanueva
2011/5/27 Emanuel Calvo <postgres(dot)arg(at)gmail(dot)com>
> El día 27 de mayo de 2011 15:53, Emanuel Calvo
> <postgres(dot)arg(at)gmail(dot)com> escribió:
> > El día 27 de mayo de 2011 15:47, Guillermo Villanueva
> > <guillermovil(at)gmail(dot)com> escribió:
> >> Alvaro, siguiendo tu consejo de generate_series, intenté crear una
> función ,
> >> pero .... algo estoy haciendo mal en la sintaxis plpgsql ya que da
> error:
> >> La función es:
> >> CREATE OR REPLACE FUNCTION nacer.periodos() RETURNS TABLE (per_fecha
> >> timestamp) AS
> >> $BODY$
> >> declare
> >> lts_minimo timestamp;
> >> lts_maximo timestamp;
> >> begin
> >> select max(periodo), min(periodo) into lts_maximo, lts_minimo from
> >> nacer.historicotemp;
> >> select * from generate_series(lts_minimo, lts_maximo, '1 month');
> >
> > '1 month'::interval
>
> CREATE FUNCTION p_() RETURNS TABLE (i int) AS $$
> DECLARE
> BEGIN
> RETURN QUERY SELECT * FROM p;
> END;
> $$ LANGUAGE plpgsql;
>
>
> Debes poner el RETURN QUERY
>
>
> --
> --
> Emanuel Calvo
> Helpame.com
>
From | Date | Subject | |
---|---|---|---|
Next Message | Gustavo Rosso | 2011-05-27 15:31:46 | urgente!!! restore |
Previous Message | Emanuel Calvo | 2011-05-27 14:00:08 | Re: mejorar performance de select |