Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Correlated Subqueries allowed in FROM clause?
For openers, Oracle (whether 8 or otherwise) does not support the INNER JOIN
syntax of Access. An equijoin in Oracle is expressed in the WHERE clause
such as:
WHERE table1.field_a = table2.field_a
The most common implementation of a correlated subquery in Oracle to which I'm accustomed uses the EXISTS or NOT EXISTS.
I can provide more details if you wish to pursue this.
Jack Guyant
jackg_at_aloha.net
Received on Tue Jun 15 1999 - 02:01:10 CDT
![]() |
![]() |