W tej chwili nie mam pod ręką instancji Oracle, więc nie testowałem tego:
select *
from (select emp_id, name, occupation,
rank() over ( partition by occupation order by emp_id) rank
from employee)
where rank <= 3
Oto link do tego, jak działa ranking:http://www.psoug.org/reference/rank.html