la Semántica

registro

Nombre para el índice de bucle que el cursor FOR LOOP declaración declara implícitamente como un %ROWTYPE variable de registro del tipo de cursor o select_statement devuelve.

record es el local del cursor FOR LOOP declaración. Las sentencias dentro del bucle pueden hacer referencia a record y sus campos. Pueden hacer referencia a columnas virtuales solo mediante alias., Las instrucciones fuera del bucle no pueden hacer referencia a record. Después de que el cursor FOR LOOP se ejecuta la instrucción, record no está definido.

cursor

el Nombre de un cursor explícito que no está abierto cuando el cursor FOR LOOP se introduce.

actual_cursor_parameter

parámetro Real que corresponde a un parámetro formal de cursor.,

select_statement

SQL SELECT statement (not PL/SQL SELECT INTO statement). For select_statement, PL/SQL declares, opens, fetches from, and closes an implicit cursor. However, because select_statement is not an independent statement, the implicit cursor is internal—you cannot reference it with the name SQL.

See Also:

Oracle Database SQL Language Reference for SELECT statement syntax

label