Re: Number of days in a tstzrange?

Поиск
Список
Период
Сортировка
От skinner@britvault.co.uk (Craig R. Skinner)
Тема Re: Number of days in a tstzrange?
Дата
Msg-id 20131030104015.GA12587@teak.britvault.co.uk
обсуждение исходный текст
Ответ на Re: Number of days in a tstzrange?  (skinner@britvault.co.uk (Craig R. Skinner))
Ответы Re: Number of days in a tstzrange?  (Gavin Flower <GavinFlower@archidevsys.co.nz>)
Список pgsql-sql
On 2013-10-29 Tue 11:34 AM |, Craig R. Skinner wrote:
> 
>     -- if a subscription is ceased same day it's started,
>     -- that day is still chargable, so bump it
>     IF billable_days < 1
>     THEN
>         billable_days := 1;
>     END IF;
>     ...
>     ...
> 

This is more accurate:
-- If a subscription billing_period ends part way through a day,IF upper(billable_item.billable_period)::time <> time
'allballs'THEN   -- That partial day is still chargable, so bump it    billable_days := billable_days + 1;END IF;
 




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

Предыдущее
От: "M. D."
Дата:
Сообщение: Re: Re: sum of until (running balance) and sum of over date range in the same query
Следующее
От: Gavin Flower
Дата:
Сообщение: Re: Number of days in a tstzrange?