select * from ( select t.*,rownum rn from (select * from emp where 1=1) t ) where rn>1 and rn<6
//作分頁(加假分頁)只需獲取request傳遞的當前頁 算出每頁要顯示的最小條數___最大條數