SQL Server Cursors Question:

What is scrollable cursor?

MS SQL Server Cursors Interview Question
MS SQL Server Cursors Interview Question

Answer:

You can use keyword SCROLL to make cursor Scrollable.
It can scroll to any row and can access the same row in the result set multiple times.
A non-scrollable cursor is also known as forward-only and each row can be fetched at most once.


Previous QuestionNext Question
Explain Temporary table VS Table variable by using Cursor alternative?Do you know the capabilities of Cursors?