InterviewSolution
Saved Bookmarks
| 1. |
Point out the correct statement.(a) A Cursor is opened and populated by executing the SQL statement defined by the cursor(b) After data manipulation, we should close the cursor explicitly(c) A cursor is declared by defining the SQL statement that returns a result set(d) All of the mentionedI have been asked this question in final exam.I would like to ask this question from Cursor in division Developing with SQL Server of SQL Server |
|
Answer» RIGHT CHOICE is (d) All of the mentioned Explanation: We use cursor when we NEED to update records in a database table in singleton FASHION means ROW by row. |
|