Login
Remember
Register
Ask a Question
What is a CURSOR and what is its use?
0
votes
asked
Feb 28, 2024
in
DB2
by
john ganales
What is a CURSOR and what is its use?
cursor
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Feb 28, 2024
by
john ganales
A CURSOR is a programming device that helps the SELECT statement find out a set of rows but displays them one at a time. This is because the host language can deal with only one row at a time.
...