From: | Jaime Casanova <jcasanov(at)systemguards(dot)com(dot)ec> |
---|---|
To: | "Jhonny Velasquez c(dot)" <jhon_vels(at)hotmail(dot)com> |
Cc: | pgsql-es-ayuda(at)postgresql(dot)org |
Subject: | Re: consulta de campos con fechas |
Date: | 2009-03-31 15:41:46 |
Message-ID: | 3073cc9b0903310841m4ac57b1bv2df407280499294c@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-es-ayuda |
On Tue, Mar 31, 2009 at 10:25 AM, Jhonny Velasquez c.
<jhon_vels(at)hotmail(dot)com> wrote:
> puedo hacer esta consulta en postgres?
>
> son campos de tipo date, de los cuales quiero extaer el mes y año
> directamente en la consulta sql.
>
en lugar de la funcion month tienes que hacer:
extract(month from campo_fecha)
o bien puedes crear una serie de funciones del tipo (lo mismo para year):
CREATE FUNCTION month(timestamp without time zone) RETURNS integer
AS $_$ select extract('month' from $1)::integer; $_$
LANGUAGE sql STABLE;
CREATE FUNCTION month(timestamp with time zone) RETURNS integer
AS $_$ select extract('month' from $1)::integer; $_$
LANGUAGE sql STABLE;
CREATE FUNCTION month(date) RETURNS integer
AS $_$ select extract('month' from $1)::integer; $_$
LANGUAGE sql STABLE;
--
Atentamente,
Jaime Casanova
Soporte y capacitación de PostgreSQL
Asesoría y desarrollo de sistemas
Guayaquil - Ecuador
Cel. +59387171157
From | Date | Subject | |
---|---|---|---|
Next Message | Emanuel Calvo Franco | 2009-03-31 15:45:56 | Re: consulta de campos con fechas |
Previous Message | Jhonny Velasquez c. | 2009-03-31 15:25:35 | consulta de campos con fechas |