How is top-n analysis performed?
Are you preparing for IT certification? With practice questions, study notes, interactive quizzes, tips and technical articles, uCertify PrepKits ensure that you get a solid grasp of core technical concepts to ace your certification exam in first attempt.
How is top-n analysis performed?
Rating:
Top-n analysis is performed using a top-n analysis query. Following is the structure of a top-n analysis query:
FROM (SELECT [column_list] FROM table
ORDER BY top-n_column)
WHERE ROWNUM <= n;
A top-n analysis query comprises the following elements:
Rating:
Was this information helpful?
Other articles
- What is a view?
- What is an outer join?
- What is HAVING clause?
- What is DML?
- What is the syntax for creating a view?