Re: First day of month, last day of month - Mailing list pgsql-sql

From Colin Wetherbee
Subject Re: First day of month, last day of month
Date
Msg-id 481095FB.7090600@denterprises.org
Whole thread Raw
In response to Re: First day of month, last day of month  (Frank Bax <fbax@sympatico.ca>)
Responses Re: First day of month, last day of month  (Erik Jones <erik@myemma.com>)
Re: First day of month, last day of month  ("Bart Degryse" <Bart.Degryse@indicator.be>)
Re: First day of month, last day of month  ("Nacef LABIDI" <nacef.l@gmail.com>)
List pgsql-sql
Frank Bax wrote:
> Frank Bax wrote:
>> Nacef LABIDI wrote:
>>> is there a better method to retrieve all the rows with dates in the 
>>> current month.
>>
>> select * from mytable where extract(month from mydate) = extract(month 
>> from now()) and extract(year from mydate) = extract(year from now());
> 
> Sorry; I was not thinking clearly - date_trunc is better for this:
> 
> select * from mytable where date_trunc('month',mydate) = 
> date_trunc('month',now());

I have some code that uses extract() for this sort of thing.  Would you 
mind explaining how date_trunc() is better for this?

Most of my extract() results end up in <select> drop-down boxes in HTML.

Thanks.

Colin



pgsql-sql by date:

Previous
From: Volkan YAZICI
Date:
Subject: Re: How I can check a substring is a valid number in postgresql ?
Next
From: Erik Jones
Date:
Subject: Re: First day of month, last day of month