Login
Remember
Register
Ask a Question
What is a Cursor?
0
votes
asked
Nov 27, 2020
in
Sql
by
rajeshsharma
What is a Cursor?
#sql-cursor
#cursor
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Nov 27, 2020
by
SakshiSharma
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
...