Search Postgresql Archives

Re: Fwd: Date math

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



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




--
Sent via pgsql-general mailing list (pgsql-general@xxxxxxxxxxxxxx)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-general

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Postgresql Jobs]     [Postgresql Admin]     [Postgresql Performance]     [Linux Clusters]     [PHP Home]     [PHP on Windows]     [Kernel Newbies]     [PHP Classes]     [PHP Books]     [PHP Databases]     [Postgresql & PHP]     [Yosemite]
  Powered by Linux