This would work as well

select * from
(select empno, ename, mgr, rownum as number_row from emp where rownum < 21)
where number_row > 11;