select empno, ename, job, sal from emp order by sal desc fetch first 4 rows only; -- 맨 위의 4개 행만 출력 (월급 순으로)
SQL SERVER의 top(n) 쿼리를 ORACLE에서 구현하기 위해선 fetch first ~ rows only;를 사용하면 된다.
fetch first ~ rows only;