adding missing FROM-clause

From: "C G" <csgcsg39(at)hotmail(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject: adding missing FROM-clause
Date: 2004-10-29 15:42:45
Message-ID: BAY15-F5qpEq8hZYNX60004235c@hotmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Dear All,

I have a simple join query

SELECT c1 FROM t1
INNER JOIN
t2 ON t2.c2 = t1.c2 WHERE t3.c3= t2.c3;

Which gives the expected result but I get the message
NOTICE: adding missing FROM-clause entry for table "t3"

How do I get rid of this NOTICE, i.e. how should I construct my select
query.

Many thanks

Colin

_________________________________________________________________
Want to block unwanted pop-ups? Download the free MSN Toolbar now!
http://toolbar.msn.co.uk/

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Thomas Hallgren 2004-10-29 15:48:11 Re: Question regarding the mailing list.
Previous Message Tom Lane 2004-10-29 15:26:54 Re: Creating database problem