Mylsql+Mariadb分页语句
select * from table limit 0,10; // 0-表示起始下标,10-表示分页大小
Oracle+PostgreSql+Sql Server2012分页语句
select * from table offset 0 rows fetch next 10 rows only; // 0-表示起始下标,10-表示分页大小
PostgreSql分页语句
select * from table LIMIT 10 OFFSET 0; // 0-表示起始下标,10-表示分页大小