Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: SQL query help!

Re: SQL query help!

From: Michel Cadot <micadot{at}altern{dot}org>
Date: Thu, 19 Apr 2007 22:38:25 +0200
Message-ID: <4627d340$0$15565$426a34cc@news.free.fr>

"Scott" <scott_at_hcsprogramming.com> a écrit dans le message de news: 1177010577.548816.316700_at_e65g2000hsc.googlegroups.com...
| Hello,
|
| I am not very good with SQL and I was given this query that I do not
| know how to limit it to one wbs_id. Can someone help?
|
| Thanks in Advance,
| Scott
|
| SELECT LEVEL xlevel
| ,proj_id
| ,wbs_short_name
| ,wbs_id
| ,parent_wbs_id
| ,SYS_CONNECT_BY_PATH(wbs_short_name,'.')
| ,REVERSE(SYS_CONNECT_BY_PATH(REVERSE(wbs_short_name),'.'))
| FROM admuser.projwbs
| START WITH proj_id = 1356
| CONNECT BY PRIOR parent_wbs_id = wbs_id
|

where wbs_id = <your wbs_id>

Regards
Michel Cadot Received on Thu Apr 19 2007 - 15:38:25 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US