A cursor with a FOR UPDATE clause allows for ________.
- Deleting Data
- Inserting Data
- Reading Data
- Updating Data
A cursor with a FOR UPDATE clause allows for updating data. This clause is used to lock the rows returned by the cursor for update operations, enabling modifications to the data directly through the cursor. It is commonly used in scenarios where data modifications need to be made based on specific criteria.
Loading...