| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
Home -> Community -> Usenet -> comp.databases.theory -> Re: transitive closure
-CELKO- wrote:
> >> 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));
Let's see "recursive with" version first:-) Received on Thu Jul 21 2005 - 17:12:13 CDT
![]() |
![]() |