dynamic rangesthe plsql lets you determine the


Dynamic Ranges
The PL/SQL lets you determine the loop range dynamically at run time, as the example below shows:

SELECT COUNT(empno) INTO emp_count FROM emp;
FOR i IN 1..emp_count LOOP
...
END LOOP;

The value of emp_count is unknown at the compile time; the SELECT statement returns the value at the run time.

Request for Solution File

Ask an Expert for Answer!!
PL-SQL Programming: dynamic rangesthe plsql lets you determine the
Reference No:- TGS0172525

Expected delivery within 24 Hours