Beginner
Database Management Systems
Q31 / 100
What is a database cursor?
Correct! Well done.
Incorrect.
The correct answer is B) A database object enabling row-by-row processing of query results
B
Correct Answer
A database object enabling row-by-row processing of query results
Explanation
Cursors iterate over result sets one row at a time in stored procedures. Generally avoided for set-based operations (SQL thinks in sets), but useful for row-by-row processing when necessary.
Progress
31/100