Another pseudo column is ROWID. This is a base 64 value. It is the fastest way to access a row in a table. If you specify FOR UPDATE OF
The FOR UPDATE OF clause can be combined with a subsequent WHERE CURRENT OF clause in a DML statement. Normally the DML will have a WHERE clause that you define. It causes the database to find the row(s) you want to update. However if you use a WHERE CURRENT OF clause, the database will immediately use the row specified by the record fetched from the cursor to do the DML.
The beauty of WHERE CURRENT OF is that the database does not need to determine which row to act upon. It already know the row that was selected in the cursor. The subsequent DML using WHERE CURRENT OF acts as fast as using the ROWID. And that, as I explained above, is the fastest way to access a row in the database.