InterviewSolution
Saved Bookmarks
| 1. |
Various alternatives to cursor in SQL Server are ___________(a) FOR(b) IF..ELSE(c) WHILE(d) All of the mentionedI had been asked this question in a national level competition.Question is from Cursor in portion Developing with SQL Server of SQL Server |
|
Answer» CORRECT answer is (c) WHILE The best explanation: CURSOR ALTERNATIVES are WHILE loop, SUBQUERIES, Temporary TABLES and Table variables. |
|