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