From: | Leonel Nunez <lnunez(at)enelserver(dot)com> |
---|---|
To: | Miguel Bravo <miguel(dot)bravo(at)gmail(dot)com> |
Cc: | pgsql-es-ayuda(at)postgresql(dot)org |
Subject: | Re: funcion de fecha |
Date: | 2006-03-23 13:21:33 |
Message-ID: | 4422A0DD.1000607@enelserver.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-es-ayuda |
Miguel Bravo wrote:
> Hola Lista miren necesito si me pueden ayudar, lo que pasa es que
> deseo consultar los memorandum y los quiero filtrar por año, el tipo
> del campo esta obviamente como date, quisiera saber como consultar los
> memos que pertenecen al año 2005, gracias lista.
>
> --
> Miguel Bravo
> Tec. Programador
> Estudiante de Ing. Redes y Telecomunicaciones
> ----------------------------------------------------------------------
2 formas que se me ocurren :
leonel=> \d ab
Table "public.ab"
Column | Type | Modifiers
--------+---------+-----------
id | integer |
h | date |
leonel=> select * from ab where to_char(h,'yyyy') ='2005';
id | h
----+------------
3 | 2005-01-23
4 | 2005-01-23
5 | 2005-01-23
(3 rows)
leonel=> select * from ab where h > '2004-12-31' and h < '2006-01-01';
id | h
----+------------
3 | 2005-01-23
4 | 2005-01-23
5 | 2005-01-23
(3 rows)
leonel
From | Date | Subject | |
---|---|---|---|
Next Message | fernando villarroel | 2006-03-23 15:35:02 | insert into plpython |
Previous Message | Juanky Moral | 2006-03-23 13:21:28 | Re: Auxilio por favor!!!!! Sincronización de BD postgres Urgente |