作用:加快数据检索速率
greenplum/postgres分页语法
select [*|字段列表] from table_name where expresion [limit {count|all}] [offset start];
--limit:指定select结果的显示条数
--offset:指定数据检索的起始位置
MySQL分页语法
select [*|字段列表] from table_name where expresion limit m,n;
--m:数据检索的其实位置
--n:每页显示的数据条数
SQLServer分页语法
--方式一
select top pageSize * from 表名 where id not in (select top pages id from 表名 order by id) order by id
--方式二
select top pageSize * from 表名 where id>=(select max(id) from (select top pages id from 表名 order by id asc ) t )
--pageSize:每页显示的数据条数
Oracle/DB2分页语法
select [*|字段列表] from table_name where 字段>=startPage and 字段<endPage;
--startPage:起始位置
--pageSize:每页显示的数据数
--endPage:startPage+pageSize