MySQL and Postgres support the limit clause which limits the number of entries returned when a query is executed:
select * from member limit 5
This query will return at most 5 entries. To do the same in Oracle, you need to use the rownum clause:
select * from member where rownum < 6