Re: Setting week starting day

Поиск
Список
Период
Сортировка
От Bruno Wolff III
Тема Re: Setting week starting day
Дата
Msg-id 20070310021253.GB24656@wolff.to
обсуждение исходный текст
Ответ на Re: Setting week starting day  (Jorge Godoy <jgodoy@gmail.com>)
Ответы Re: Setting week starting day  (Omar Eljumaily <omar2@omnicode.com>)
Re: Setting week starting day  (Jorge Godoy <jgodoy@gmail.com>)
Список pgsql-general
On Fri, Mar 09, 2007 at 23:07:26 -0300,
  Jorge Godoy <jgodoy@gmail.com> wrote:
>
> But how to get the date if the first day of the week is a Wednesday?  This
> example is like the ones I've sent with separate queries that needed being
> combined -- in a function, probably -- to get the desired result.

If you want to group on weeks that start on Wednesdays add 5.

postgres=# select date_trunc('week', '2007-03-07'::date + 5);
       date_trunc
------------------------
 2007-03-12 00:00:00-05
(1 row)

postgres=# select date_trunc('week', '2007-03-06'::date + 5);
       date_trunc
------------------------
 2007-03-05 00:00:00-06
(1 row)

postgres=# select date_trunc('week', '2007-03-08'::date + 5);
       date_trunc
------------------------
 2007-03-12 00:00:00-05
(1 row)

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

Предыдущее
От: Jorge Godoy
Дата:
Сообщение: Re: Setting week starting day
Следующее
От: Omar Eljumaily
Дата:
Сообщение: Re: Setting week starting day