I have a procedure that have to select from different tables according to a input parameter. Input parameter select the table I have to query. Actually I have a static situation.
CURSOR c IS SELECT ... FROM TBL;
BEGIN
FOR idx IN c LOOP
....
END LOOP;
Is there a way to change cursor query definition at run time