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