Problem with complex outer join expression

Поиск
Список
Период
Сортировка
От Chris Velevitch
Тема Problem with complex outer join expression
Дата
Msg-id b0a3bf780604252325s31cbef5fy53053ada1bd1a11e@mail.gmail.com
обсуждение исходный текст
Ответы Re: Problem with complex outer join expression  ("chris smith" <dmagick@gmail.com>)
Re: Problem with complex outer join expression  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-general
I'm using 7.4.5 on win XP Pro SP1.

I'm getting:-

     ERROR:  syntax error at or near "(" at character 155

from the query:-

select dummy_records.sequence_nr,timesheets.weekending,timesheets.timesheet_id
from dummy_records
     ,left outer join timesheets
            on (timesheets.weekending = ('2006-04-09' + (integer
dummy_records.sequence_nr-1)*7)))
where dummy_records.sequence_nr between 1 and (date '2006-04-23' -
date '2006-04-09')/7+1;

What this query is trying to achieve is:-

Find all weekending dates between 2 given weekending dates and any
corresponding timesheets for those weekending dates.

What am I doing wrong here? How do I achieve what I want?


Chris
--
Chris Velevitch
Manager - Sydney Flash Platform Developers Group
www.flashdev.org.au

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

Предыдущее
От: "A. Kretschmer"
Дата:
Сообщение: Re:
Следующее
От: "chris smith"
Дата:
Сообщение: Re: Problem with complex outer join expression