Example of PL/SQL loop
This script should be run from SQL*plus prompt. This can also be placed in a file and ran from the SQL*plus prompt
|
-- -- Created by Jeffery J. Jimes -- Date 08/22/2001 -- Description: This is a example of a PL/SQL loop example. --
DECLARE FROM user_table
WHERE table_name = v_table_name;
/ |