超难!!!难死俺们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中能否实现.
------解决方案----------------------要极其优化的话 id上必须有聚集索引
set rowcount 10
declare @xID int
select @xID=500001
select * from [table] where ID > @xID
set rowcount 0
--用top 效率是不行地.........