Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: cursor in side cursor
hi do you mean something like this?
for i in (select * from dept)
loop
for x in (select * from emp where deptno = i.deptno) loop
......
end loop;
end loop;
On 4/18/06, Bob Robert <mssql_2002_at_yahoo.com> wrote:
>
> Gurus,
>
> Is it posssible to write cursor in side of another cursor?
>
> Thanks,
> Bob
>
> __________________________________________________
> Do You Yahoo!?
> Tired of spam? Yahoo! Mail has the best spam protection around
> http://mail.yahoo.com
> --
> http://www.freelists.org/webpage/oracle-l
>
>
>
-- http://www.freelists.org/webpage/oracle-lReceived on Tue Apr 18 2006 - 02:24:01 CDT
![]() |
![]() |