rem rem $Header: timesten/quickstart/sample_code/plsql/cursor_loop.sql /main/1 2009/04/03 14:13:41 rolawson Exp $ rem Rem Copyright (c) 1991 by Oracle Corporation Rem NAME Rem pls_examp4.sql - Rem DESCRIPTION Rem Rem RETURNS Rem Rem NOTES Rem Rem MODIFIED (MM/DD/YY) Rem rolawson 04/03/09 - moved from sample_code/plsql/scripts to Rem sample_code/plsql Rem rolawson 03/04/09 - initial checkin of quickstart files Rem nmeng 11/29/06 - renamed file Rem rvasired 05/12/92 - Creation /* ** This block finds all employees whose monthly wages (salary plus ** commission) are higher than $2000. ** ** An alias is used in the cursor declaration so that the subsequent ** use of %ROWTYPE is allowed. (Column names in a cursor declaration ** must have aliases if they are not simple names.) ** ** Copyright (c) 1989,1992 by Oracle Corporation */ DECLARE CURSOR my_cursor IS SELECT sal + NVL(comm, 0) wages, ename FROM emp; my_rec my_cursor%ROWTYPE; BEGIN OPEN my_cursor; LOOP FETCH my_cursor INTO my_rec; EXIT WHEN my_cursor%NOTFOUND; IF my_rec.wages > 2000 THEN INSERT INTO temp VALUES (NULL, my_rec.wages, my_rec.ename); END IF; END LOOP; CLOSE my_cursor; END; /