| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
Home -> Community -> Usenet -> comp.databases.theory -> Re: transitive closure
>> I yet to see a case that is handled by recursive "with" and not handled by "connect by". <<
Want to try an Ackeramnn function?
A(x,y) = if x = 0
then (y+1)
else if y = 0
then A(x-1, 1)
else A(x-1, A(x,y-1));
Received on Thu Jul 21 2005 - 11:01:01 CDT
![]() |
![]() |