Re: Fwd: Date math

Поиск
Список
Период
Сортировка
От Justin
Тема Re: Fwd: Date math
Дата
Msg-id 4A46F3EC.50603@emproshunts.com
обсуждение исходный текст
Ответ на Re: Fwd: Date math  (Adam Rich <adam.r@sbcglobal.net>)
Список 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 по дате отправления:

Предыдущее
От: Adam Rich
Дата:
Сообщение: Re: Fwd: Date math
Следующее
От: Joe Conway
Дата:
Сообщение: Re: Date math