SQL牛人必入-->难死本公司三个CTO:返回部分记录
有一张表: 
 主键                                                                           级别                  名字 
 ID   Int   Primary   Key   Identity   ,Class   Int,Name   nVarchar(16),等等...   
 此表有1000万条以上记录,而且记录会经常增删,因此ID并不连续 
 如果想要返回第N条记录开始的M条记录:比如总共有1000万条记录现在想要返回第5200001到5200010之间的十条记录,也就是说返回表中的部分记录,而这部分记录的起始ID并不知道(因为ID并不连续)这个该怎么做? 
 兄弟难道要将其导出到临时表然后再筛选?可是这个问题有一个十分严格的时间响应要求,500万条以上的记录如果导出恐怕不是几秒钟就能搞定的,不知各位SQL牛人如何搞定(Select   有个   Top   n   难道就没有   From   n   To   M   返回一个记录区间的功能?) 
 PS:还有一个变态的要求就是要在ACCESS数据库下实现,嘿嘿。
------解决方案--------------------取n到m条记录的语句   
 取n到m条记录的语句   
 1. 
 select top m * from tablename where id not in (select top n * from tablename)   
 2. 
 select top m * into 临时表(或表变量) from tablename order by columnname -- 将top m笔插入 
 set rowcount n 
 select * from 表变量 order by columnname desc   
 3. 
 select top n * from  
 (select top m * from tablename order by columnname) a 
 order by columnname desc     
 4.如果tablename里没有其他identity列,那么: 
 select identity(int) id0,* into #temp from tablename   
 取n到m条的语句为: 
 select * from #temp where id0 > =n and id0  <= m   
 如果你在执行select identity(int) id0,* into #temp from tablename这条语句的时候报错,那是因为你的DB中间的select into/bulkcopy属性没有打开要先执行: 
 exec sp_dboption 你的DB名字, 'select into/bulkcopy ',true     
 5.如果表里有identity属性,那么简单: 
 select * from tablename where identitycol between n and m    
------解决方案--------------------还有一个变态的要求就是要在ACCESS数据库下实现,嘿嘿。   
 我不知道上诉语句在access中能否实现.
------解决方案--------------------设要返回第m到n条记录,tb为表名,给ID顺序索引,试试   
 select top m-n+1 from tb where id> (select max(id) from (select top m-1 id from tb) x)   
 因为m,n为常量,所以不存在top 变数问题   
 如果不要求一条语句,建议,先 
 select max(id) from (select top m-1 id from tb) x 
 记录下这个maxid,然后再执行 
 select top m-n+1 from tb where id> maxid 
 (如果是前台程序)
------解决方案--------------------如果没有变态的要求的话就不难
------解决方案--------------------Access?   
 Access中不支持临时表,而且对于in或not in 的处理效率极低。   
 1000W,这么多的数据,不应该选Access做后台数据库,毕竟Access是桌面型数据库,其安全性、稳定性、并发访问处理都无法与SQL Server、Oracle等大型企业级数据库相比。
------解决方案------------------------这里以Northwind中的orders表为例(取从M到N) 
 ----取第100~200之间的记录   
 SET ROWCOUNT 100   
 declare @Maxid int 
 select @Maxid=orderid from  dbo.Orders order by orderid   
 select @maxid    
 ----200-100 
 set rowcount 100 
 select * from orders where orderid> @maxid order by orderid
------解决方案--------------------强帖留名
------解决方案--------------------如果用Access,那In, Not IN 效率不是一般的低,甚至Sybase12也低. 
 建议把数据换到SQL Server里面先
------解决方案--------------------CREATE PROCEDURE CN5135_SP_Pagination 
 /* 
 *************************************************************** 
 **  中国无忧商务网千万数量级分页存储过程                     ** 
 *************************************************************** 
 参数说明: 
 1.Tables             :表名称,视图 
 2.PrimaryKey         :主关键字