Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Cursor parameters in subqueries
Hi folks,
I created a cursor with a subquery in the Cursor Body. Now I tried to pass the Cursor-Parameters to this subquery, but Oracle cannot compile it (PLS-00320)
My Cursor was something like this:
cursor test (mypar IN CHAR)
select x,a
from table1 t1,
(select y,b from table2 where table2.b = mypar) t2
What's wrong ? Any suggestions ?
Thanx, Jens Received on Sat Nov 07 1998 - 14:48:47 CST
![]() |
![]() |