Re: Continue with the original idea, about JOINS....

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Jhonatas M(dot) Rodríguez <jhonatas_rod(at)yahoo(dot)com>
Cc: pgsql-admin(at)postgresql(dot)org
Subject: Re: Continue with the original idea, about JOINS....
Date: 2004-06-25 22:19:07
Message-ID: 2854.1088201947@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

"=?iso-8859-1?q?Jhonatas=20M.=20Rodr=EDguez?=" <jhonatas_rod(at)yahoo(dot)com> writes:
> I want to continue with the original idea, how i do a
> join without
> (table1 LEFT JOIN table2 ON (table1.field1 =
> table2.field2)
> table2 RIGHT OUTER JOIN table1 ON (table2.field2 =
> table1.field1))
> else with a simbol (as (*,+, anything)).

You don't. Those syntaxes are nonstandard and we don't support them.
The ISO SQL standard defines JOIN, and that's what we support.

regards, tom lane

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message Stephan Szabo 2004-06-25 22:23:44 Re: Continue with the original idea, about JOINS....
Previous Message Jhonatas M. Rodríguez 2004-06-25 21:56:23 Continue with the original idea, about JOINS....