InterviewSolution
Saved Bookmarks
| 1. |
Which of the following function is used when you want all tied rows to have the same ranking?(a) RANK(b) NTILE(c) ROW_NUMBER(d) None of the mentionedThis question was posed to me during an online exam.This key question is from Ranking in portion Manipulating Data with Select of SQL Server |
|
Answer» CORRECT choice is (a) RANK To elaborate: The numbers ASSIGNED by RANK are not NECESSARILY consecutive. |
|