Question: Convert the following for-cursor into: open, fetch, close one: DECLARE Cursor c1 is select table_name from user_tables; BEGIN FOR tables IN c1 LOOP DBMS_OUT.PUT_LINE(tables.table_name); END

  1. Convert the following for-cursor into: open, fetch, close one:

DECLARE

Cursor c1 is select table_name from user_tables;

BEGIN

FOR tables IN c1 LOOP

DBMS_OUT.PUT_LINE(tables.table_name);

END LOOP;

END;

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!