Fork me on GitHub
摘要: 转载地址:http://www.cnblogs.com/iamowen/archive/2011/11/03/2235068.html分页很重要,面试会遇到。不妨再回顾总结一下。1.创建测试环境,(插入100万条数据大概耗时5分钟)。create database DBTestuse DBTest--创建测试表create table pagetest(id int identity(1,1) not null,col01 int null,col02 nvarchar(50) null,col03 datetime null)--1万记录集declare @i intset @i=0whil 阅读全文
posted @ 2011-11-07 09:10 磊哥|www.javacn.site 阅读(746) 评论(1) 推荐(5) 编辑