|
Hi, I have a student table with columns, Student Id, Name, Group, Test Name and Marks. Here, I would like to calculate rank based on marks. How can we do this in oracle? Thanks in advance BI DWH BALA
(comments are locked)
|
|
Does this link help? http://www.adp-gmbh.ch/ora/sql/analytical/rank.html Yes Prodflife. Thanks a lot. It solved my issue.
Nov 29 '09 at 06:21 PM
BI DWH BALA
(comments are locked)
|
|
select *, dense_rank() over (order by marks) from student
(comments are locked)
|

