This article provides an example to display top 3 highest item price from item table.
Select itemname from (select itemname from item orderby itemprice desc) where rownum<=3; Output: ITEMNAME ---------- Keyboard Pendrive Mouse