Using subselects as joins in POstgeSQL (possible?, examples) - Mailing list pgsql-sql

From frank church
Subject Using subselects as joins in POstgeSQL (possible?, examples)
Date
Msg-id 1122034397.42e0e2ddc3f4a@webmail.adontendev.net
Whole thread Raw
Responses Re: Using subselects as joins in POstgeSQL (possible?, examples)
List pgsql-sql

Is it possible to use subselects as joins in PostgreSQL.

eg.

select a.a, a.b, a.c, b.a, b.b. b.c from (first subsselect) a (second subselect)
b  where (in table criteria) and a.a = b.a

or

select a.a, a.b, a.c, b.a, b.b. b.c from (first subsselect) a join (second
subselect) b on a.a = b.a where (in table criteria)

I have a feeling it is possible but I need the right syntax

//Frank



----------------------------------------------------------------
This message was sent using IMP, the Internet Messaging Program.



pgsql-sql by date:

Previous
From: "Dongsoo Yoon"
Date:
Subject: Error when using array variable
Next
From: KÖPFERL Robert
Date:
Subject: Re: Are long term never commited SELECT statements are a pr