Is it possible to add FOR UPDATE and WHERE CURRENT OF to an implicit cusror FOR LOOP? There appears to be no way to reference the cursor as one can with an explicit cursor.
BEGIN
FOR item IN (
SELECT last_name, job_id
FROM employees
WHERE job_id LIKE '%CLERK%'
AND manager_id > 120
ORDER BY last_name
)
LOOP
...
...
...
END LOOP;
END;
/
Thanks