Question: Examine this executable section of a PL/SQL block: BEGIN FOR worker_record IN pay_cursor LOOP Worker_id_table(worker_id):= Worker_record.last_name; END LOOP; CLOSE salary_cursor; END; Why does this section
Examine this executable section of a PL/SQL block:
BEGIN
FOR worker_record IN pay_cursor LOOP
Worker_id_table(worker_id):=
Worker_record.last_name;
END LOOP;
CLOSE salary_cursor;
END;
Why does this section cause an error?
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
