Positioned updates/deletes Describes row modification based on a FOR UPDATE cursor. Understanding positioned update or deleteThis is an introduction to SQL positionned UPDATE/DELETE.DECLARE (SELECT … FOR UPDATE)Associate a database cursor with a SELECT statement to perform positioned updates and deletesUPDATE … WHERE CURRENT OFUpdates the current row in a result set of a database cursor declared for update.DELETE … WHERE CURRENT OFDeletes the current row in a result set of a database cursor declared for update.ExamplesWHERE CURRENT OF usage examples.