InterviewSolution
Saved Bookmarks
| 1. |
Which of the function is not a ranking window function?(a) RANK(b) NTILE(c) ROW_NUMBER(d) None of the mentionedThis question was addressed to me in quiz.My question comes from Windowing topic in portion Manipulating Data with Select of SQL Server |
|
Answer» RIGHT answer is (a) RANK To explain: SINCE SQL Server 2005 we have had support for some WINDOW functions, they are: ROW_NUMBER, RANK, DENSE_RANK and NTILE. |
|