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

Home -> Community -> Usenet -> comp.databases.theory -> Re: transitive closure

Re: transitive closure

From: -CELKO- <jcelko212_at_earthlink.net>
Date: 21 Jul 2005 09:01:01 -0700
Message-ID: <1121959499.704989.286200@g47g2000cwa.googlegroups.com>


>> 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

Original text of this message

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