| Home | Previous Lesson: Updating Through a Cursor Next Lesson: Stored Procedures |
To delete the current row in a cursor result set, the procedure is similar to updating:
DELETE FROM "product_master"
WHERE CURRENT OF lProductMasterCursor1 ;
As with updating through a cursor, deleting a row is not allowed if the SELECT list contains aggregate functions or uses a GROUP BY clause.
| Home | Previous Lesson: Updating Through a Cursor Next Lesson: Stored Procedures |