| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
Home -> Community -> Usenet -> c.d.o.tools -> Re: connect by clause with join
On Wed, 18 Apr 2001 08:16:31 +0100, gg200492 <gg200492_at_ratp.fr> wrote:
>how to do for writing a sql query with "connect by clause and start
>with"
>when we must have a join with another table to show another field?
>
>
>thanks
>
>gil
>
1 use inline views
select *
from
(select statement with connect by)
, other table
where etc
2 Transform the join to a in subquery. Somewhat ugly but will work.
Hth, Received on Wed Apr 18 2001 - 09:43:25 CDT
![]() |
![]() |