1.使用Row_number() over(order by columnName)函数来作为标示分页(下面的例子都是以last_seen来排序的,要求取顺序为20-30行的数据) SELECT Username,real_filename,Row_number() over (order by last_seen desc) as rn INTO #tempTable from Allftplog SELECT * FROM #tempTable where rn between 20 and
一直想整理下关于sql分页的几种方法,今天终于有时间整理下了.闲话少说直接上sql,先创建一个测试库,测试表以及测试数据,sql语句如下: CREATE DATABASE DBTEST GO USE DBTEST GO --创建测试表 create table pagetest ( id int identity(1,1) not null, col01 int null, col02 nvarchar(50) null, col03 datetime null ) --100万记录集 耗时 3
1.工具类 public final class QueryTool { public static PageRequest buildPageRequest(int pageNumber, int pageSize, String sortType){ Sort sort = null; if("auto".equals(sortType)) { sort = new Sort(Direction.DESC, "ctime"); } else { sort = n
1.设置索引. MySQL索引操作:给表列创建索引: 建表时创建索引: create table t(id int,name varchar(20),index idx_name (name)); 给表追加索引: alter table t add unique index idx_id(id); 给表的多列上追加索引 alter table t add index idx_id_name(id,name);或者: create index idx_id_name on t(id,name);