Re: Extract between year *and* month - Mailing list pgsql-general

From Matthias.Pitzl@izb.de
Subject Re: Extract between year *and* month
Date
Msg-id 11EC9A592C31034C88965C87AF18C2A70CFCF7@m0000s61
Whole thread Raw
In response to Extract between year *and* month  ("One" <david.hunter@gmail.com>)
List pgsql-general
Hi!

You could use date_trunc instead of extract to truncate the date down to the
month:

select date_trunc('month','2006-12-31'::timestamp);
     date_trunc
---------------------
 2006-12-01 00:00:00

Greetings,
Matthias

> -----Original Message-----
> From: pgsql-general-owner@postgresql.org
> [mailto:pgsql-general-owner@postgresql.org] On Behalf Of One
> Sent: Thursday, November 16, 2006 10:03 PM
> To: pgsql-general@postgresql.org
> Subject: [GENERAL] Extract between year *and* month
>
>
> Hi - I'd like to return search results based on a date range that is
> selected by the user :
>
> <select name="date1yy">
>        <option value="1995-01-01" selected>1995</option>
>
> <select name="date2yy">
>        <option value="2006-12-31" selected>2006</option>
>
> My SQL is :
>
> select *
>  from tablename
>     where title like ('%nith%')
>        and recall_date between
>            extract(year from date '1995-01-01')
>               and  extract(year from date '2006-12-31')
>                   order by recall_date
>
> How can I add the MONTH to be included in the between statement ?
> If I select 1995 - 2006 it currently only returns rows up to
> 2005-12-31
>
> THANKS!
>
>
> ---------------------------(end of
> broadcast)---------------------------
> TIP 5: don't forget to increase your free space map settings
>

pgsql-general by date:

Previous
From: Reid Thompson
Date:
Subject: Vienna migrating some DB's from Oracle to PG
Next
From: Tino Wildenhain
Date:
Subject: Re: Calculating percentages in Postgresql