SQL Server Cursors Question:

Download Job Interview Questions and Answers PDF

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.

Download MS SQL Server Cursors Interview Questions And Answers PDF

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