Re: sub-select, view and sum()

Поиск
Список
Период
Сортировка
От Gary Stainburn
Тема Re: sub-select, view and sum()
Дата
Msg-id 200301062229.47578.gary.stainburn@ringways.co.uk
обсуждение исходный текст
Ответ на Re: sub-select, view and sum()  (Stephan Szabo <sszabo@megazone23.bigpanda.com>)
Список pgsql-sql
On Monday 06 January 2003 6:31 pm, Stephan Szabo wrote:
> On Mon, 6 Jan 2003, Gary Stainburn wrote:
> > create view turn_details as
> >   select t.*, d.sid as dsid, d.sname as dname,
> >               f.sid as fsid, f.sname as fname,
> >           (select sum(r.rmiles) as rmiles from rides r where r.rtid = tid)
> >             as rmiles
> >     from turns t
> >     left outer join staff d on t.tfitter = d.sid
> >     left outer join staff f on t.tccleaner = f.sid
> >     where r.rtid = t.tid
> >     order by tdate;
> > ERROR:  Relation 'r' does not exist
>
> Do you really need the outer where r.rtid=t.tid?  I would think that the
> subselect where clause would already handle that for you.

Hi Stephan, 

Thanks for that. That was the problem.  I'd left it after trying to use a 
normal join in an earlier attempt.

Gary
-- 
Gary Stainburn
This email does not contain private or confidential material as it
may be snooped on by interested government parties for unknown
and undisclosed purposes - Regulation of Investigatory Powers Act, 2000     



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

Предыдущее
От: Stephan Szabo
Дата:
Сообщение: Re: sub-select, view and sum()
Следующее
От: "Tambet Matiisen"
Дата:
Сообщение: Re: Sorry, to many clients already