|
| Total Answers and Comments: 3 |
Last Update: June 24, 2008 Asked by: ramahesh |
|
| | |
|
Submitted by: shamkohli While using cusor in PL/SQL, when we update a record, we can write WHERE CURRENT OF along with cursor_name. This is done in place of the where condition while updating. If we give WHERE condition, the whole table have to be searched for the condition to be fulfilled for the updation to be done. But if we write 'WHERE CURRENT OF' the updation is done in the current record of the table without scanning the whole table.
Above answer was rated as good by the following members: saginandkishore | Go To Top
|