DELETE v11
The DELETE
command (available in the SQL language) can also be used in SPL programs.
An expression in the SPL language can be used wherever an expression is allowed in the SQL DELETE
command. Thus, SPL variables and parameters can be used to supply values to the delete operation.
The SQL%FOUND
conditional expression returns TRUE
if a row is deleted, FALSE
otherwise. See Obtaining the Result Status for a discussion of SQL%FOUND
and other similar expressions.
The following shows the deletion of an employee using this procedure.
Note
The DELETE
command can be included in a FORALL
statement. A FORALL
statement allows a single DELETE
command to delete multiple rows from values supplied in one or more collections. See Using the FORALL Statement for more information on the FORALL
statement.