--指定第四行记录
select * from client where rownum = 4;
--指定前N行记录
select * from client where rownum < 4;