//MySql数据库的分页查询sql SELECT * from 表名 LIMIT 1,2 //Oracle数据库的分页查询sql语句 select * from ( select t.*, rownum RN from 表名 ) where RN > 0 and RN <= 15