Re: Date Foo. - Mailing list pgsql-sql

From Brian Knox
Subject Re: Date Foo.
Date
Msg-id 40366D40.4030405@aol.net
Whole thread Raw
In response to Re: DISTINCT ON troubles  ("scott.marlowe" <scott.marlowe@ihs.com>)
Responses Re: Date Foo.  ("scott.marlowe" <scott.marlowe@ihs.com>)
List pgsql-sql
Sorry, Not looking for a way to extract a month from a timestamp. I'm 
looking for a way to convert an interval from days to months. I'm not 
sure after digging into it that there is a way to handle it in SQL, as 
the interval that results from subtracting one timestamp from another is 
not away of what months the interval spans, so there'd be no proper way 
to take month lengths into account.

I gave up on the sql and used Date::Calc from Perl. Thanks for your 
answer anyway.

scott.marlowe wrote:
> On Thu, 19 Feb 2004, Brian Knox wrote:
> 
> 
>>( sorry if this is a repeat, my mail server is being wonky today )
>>
>>I'm looking for a way, within SQL, given a starting date and an ending 
>>date, to get back the number of months between the start and end date. 
>>If I "SELECT end_date - start_date", I get back an interval in days; I 
>>need months.
> 
> 
> Maybe date_part?
> 
> select date_part('month','2004-08-02 12:00:00'::timestamp) - 
> date_part('month','2004-05-01 12:00:00'::timestamp);
> 


pgsql-sql by date:

Previous
From: Josh Berkus
Date:
Subject: Re: Row counts/data changes. Any catalog table that has this info?
Next
From: "scott.marlowe"
Date:
Subject: Re: Date Foo.