Mylsql+Mariadb分頁語句
select * from table limit 0,10; // 0-表示起始下標(biāo),10-表示分頁大小
Oracle+PostgreSql+Sql Server2012分頁語句
select * from table offset 0 rows fetch next 10 rows only; // 0-表示起始下標(biāo),10-表示分頁大小
PostgreSql分頁語句
select * from table LIMIT 10 OFFSET 0; // 0-表示起始下標(biāo),10-表示分頁大小