InterviewSolution
Saved Bookmarks
| 1. |
Life cycle of typical cursor involves ______ steps in SQL Server.(a) 2(b) 3(c) 4(d) 5This question was posed to me by my school principal while I was bunking the class.This interesting question is from Cursor topic in portion Developing with SQL Server of SQL Server |
|
Answer» RIGHT answer is (d) 5 Easy explanation: The five STEPS are Declare CURSOR,Open,FETCH,CLOSE and Deallocate. |
|