Re: sub-select, view and sum()

From: Stephan Szabo <sszabo(at)megazone23(dot)bigpanda(dot)com>
To: Gary Stainburn <gary(dot)stainburn(at)ringways(dot)co(dot)uk>
Cc: <pgsql-sql(at)postgresql(dot)org>
Subject: Re: sub-select, view and sum()
Date: 2003-01-06 18:31:29
Message-ID: 20030106102933.K47795-100000@megazone23.bigpanda.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

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.

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Gary Stainburn 2003-01-06 22:29:47 Re: sub-select, view and sum()
Previous Message Robert Treat 2003-01-06 18:20:06 Re: Sorry, to many clients already