| Oracle FAQ | Your Portal to the Oracle Knowledge Grid | |
Home -> Community -> Usenet -> c.d.o.server -> cursor using select from subquery
I have a select that works fine:
select aup.usid, aup.program, obj.object_name
from (select usid, program
from users, programs ) aup,
program_objects obj
However, if I want to use this query with a cursor within a stored procedure:
cursor c_usprobj is
select aup.usid, aup.program, obj.object_name
from (select usid, program
from users, programs ) aup,
program_objects obj
the stored procedure gives compilation errors on the first "(".
Does anybody know what's wrong? Is it not allowed to use selects from subqueries in PL/SQL?
Kind reGards,
\ / |
x s
/ \
Gerard
Received on Thu Jan 30 1997 - 00:00:00 CST
![]() |
![]() |