0 votes
in Sql by
What is a Cursor?

1 Answer

0 votes
by
A cursor is a database object which is used to manipulate data in a row-to-row manner.

Cursor follows steps as given below:

Declare Cursor

Open Cursor

Retrieve row from the Cursor

Process the row

Close Cursor

Deallocate Cursor
...