Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Heirarchical Query
Message
 
 
To
18/09/2007 01:21:26
Prashant Dongare
Micropro Software Solutions
Nagpur, India
General information
Forum:
Microsoft SQL Server
Category:
SQL syntax
Environment versions
SQL Server:
SQL Server 2000
Miscellaneous
Thread ID:
01255005
Message ID:
01255055
Views:
10
This message has been marked as a message which has helped to the initial question of the thread.
MS SQL Server 2000 does not support hierarchical queries. The hierarchical queries support has been added in MS SQL Server 2005

>Please can anyone suggest me a counter query in MS SQL for the one in Oracle.
>
>In Oracle I use the following Query to traverse the data from root to the last child.
>
>
>SELECT LPAD(' ',3*LVLCODE) || Name,
>         LVLCODE, PRCODE
> FROM   LEVELMST
> CONNECT BY PRIOR LVLCODE = PRCODE
> START WITH PRCODE = 0
>
>
>To traverse from child to root the query in Oracle is
>
>
>SELECT LPAD(' ',3*LVLCODE) || Name,
>         LVLCODE, PRCODE
> FROM   LEVELMST
> CONNECT BY LVLCODE = PRIOR PRCODE
> START WITH LVLCODE = 17
>
>
>Please help me with these queries.
>Thanks in advance.
--sb--
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform