Thread: Outer inner join

Outer inner join

From
Przemyslaw Bak
Date:
Hi,

how can I use outer or inner join in POstgres 6.3.2 ?

przemol


Re: [GENERAL] Outer inner join

From
Byron Nikolaidis
Date:
Przemyslaw Bak wrote:
>
> Hi,
>
> how can I use outer or inner join in POstgres 6.3.2 ?
>
> przemol

Postgres supports inner join using the WHERE clause (not the keywords
INNER JOIN ... ON).

It doesn't support outer join yet.  I'm not sure if this feature is
being added for the 6.4 release or not.

Byron