i posted a question about how to display the top 5 highest figures in the column, i was given this solution
Select columns
from
(select columns, RANK() OVER (ORDER BY column DESC) RN
from tableA
) V
where V.RN <= 5
but it did not work, i'm using the
vb.net and it wont recognize the RANK() OVER and wat does it mean