Re: Query to find list of dates between two dates

Поиск
Список
Период
Сортировка
От Andre Lopes
Тема Re: Query to find list of dates between two dates
Дата
Msg-id 18f98e681002050401qbf7fd27r21320ddf8d8d85b7@mail.gmail.com
обсуждение исходный текст
Ответ на Query to find list of dates between two dates  (aravind chandu <avin_friends@yahoo.com>)
Список pgsql-general
You could use a query like this one here:

   and table.BEGIN_DATE <= pREFERENCE_END_DATE
   and (table.END_DATE   >= pREFERENCE_BEGIN_DATE or table.END_DATE is null)

Best Regards


В списке pgsql-general по дате отправления:

Предыдущее
От: Alban Hertroys
Дата:
Сообщение: Re: Query to find list of dates between two dates
Следующее
От: Ivan Sergio Borgonovo
Дата:
Сообщение: Re: Query to find list of dates between two dates