select * from ( select dense_rank() over( order by unitprice desc ) as rownum, * from products ) p where p.rownum = 2