Re: Wildcard in date field

From: "K Parker" <kparker(at)eudoramail(dot)com>
To: pgsql-sql(at)hub(dot)org
Subject: Re: Wildcard in date field
Date: 2000-06-24 05:14:42
Message-ID: CLFEKIBHMPLDFAAA@shared1-mail.whowhere.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

The suggest solution works:

> SELECT * FROM my_table WHERE
> date_part('month', col_name::datetime) = '06'
> AND date_part('year', col_name::datetime) =
> '2000';

But you can also just do a comparison:

where col_name >= '2000-06-01' AND col_name <= '2000-06-30'

Using the correct date format for your environment, of course.

Join 18 million Eudora users by signing up for a free Eudora Web-Mail account at http://www.eudoramail.com

Browse pgsql-sql by date

  From Date Subject
Next Message Mitch Vincent 2000-06-24 18:27:19 More full text index..
Previous Message Tom Lane 2000-06-24 04:37:09 Re: [HACKERS] query failed , don't know why