Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> "order siblings by" problem with Oracle 9.0.1.1
Hello all,
I'm using hierarchical query in Oracle 9.0.1.1:
SQL> select x from (
select 1 x from dual
)
start with x=1
connect by prior x = x -1
order siblings by x;
X
1
But:
SQL> declare
v integer; begin select x into v from ( select 1 x from dual ) start with x=1
end; /
Is it some problem with my SQL or is it problem with Oracle?
Regards, Oleg Received on Fri Feb 14 2003 - 05:52:16 CST
![]() |
![]() |