Re: Fwd: Date math - Mailing list pgsql-general

From Justin
Subject Re: Fwd: Date math
Date
Msg-id 4A46F3EC.50603@emproshunts.com
Whole thread Raw
In response to Re: Fwd: Date math  (Adam Rich <adam.r@sbcglobal.net>)
List pgsql-general
Adam Rich wrote:
 > Guy Flaherty wrote:
 >>
 >>
 >> You could use the extract() function to calculate the day of year of
the person's birthdate and then check if this number is within today's
day of year and range of days you want to check for, for example,
today's day of year + 30 days to be within a month. That way you don't
need to worry about years at all. You may need to double check this will
work on the leap years though!
 >>
 >>
 >
 > Thanks! that's even better than what I just came up with:
 >
 > birth_date + ((interval '1 year') * ceil(EXTRACT(DAYS FROM (now() -
birth_date))/365.25))
 >
 > And I like the "Day of year" solution because (I think) I can use a
functional index on that value.

it kind of ugly looking but here is one that uses only math and no
problem with leap years or anything

select current_date,  '07-02-1979'::date +
    ((date_part('year',current_date) - date_part( 'year',
'07-02-1979'::date))::text||'year')::interval

So the select statement might look like this

select birth_day
      where  birthday  + ((date_part('year',current_date) - date_part(
'year',birth_day))::text||'year')::interval Between now() and now() +
'90 day'::interval




pgsql-general by date:

Previous
From: Adam Rich
Date:
Subject: Re: Fwd: Date math
Next
From: Joe Conway
Date:
Subject: Re: Date math