Re: date range query help

Поиск
Список
Период
Сортировка
От Adam Rich
Тема Re: date range query help
Дата
Msg-id 045201c94ab9$aef53340$0cdf99c0$@r@sbcglobal.net
обсуждение исходный текст
Ответ на date range query help  (novice <user.postgresql@gmail.com>)
Ответы Re: date range query help  ("Raymond C. Rodgers" <sinful622@gmail.com>)
Список pgsql-general
> Now user Ben has passed his mobile to user Josh and we issued Josh his
> mobile on 2008-10-15.
>
> 1. Is it possible for me to write a query that will have the fields
>
> call.call_id,
> call.datetime,
> mobile_custodian.user_id,
> call.mobile_no
> call.charge
>
> that will use call.datetime and lookup the date range from
> mobile_custodian.issue_date and mobile_custodian.return_date to
> identify the right user for each call?
>
> 2.  Do I need to change the issue_date & return_date fields to
> timestamp to perform the above?
>

No, a date will work fine.  Try this:


select call.call_id,
 call.datetime,
 mobile_custodian.user_id,
 call.mobile_no
 call.charge
from call, mobile_custodian
where call.mobile_no = mobile_custodian.mobile_no
and call.datetime between mobile_custodian.issue_date
    and mobile_custodian.return_date



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

Предыдущее
От: novice
Дата:
Сообщение: date range query help
Следующее
От: novice
Дата:
Сообщение: Re: date range query help