超难!!!难死俺们CTO的简单问题

shimmer 2007-04-04 09:56:02
有一张表:
主键 级别 名字
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数据库下实现,嘿嘿。
...全文
203 4 打赏 收藏 转发到动态 举报
AI 作业
写回复
用AI写文章
4 条回复
切换为时间正序
请发表友善的回复…
发表回复
realgz 2007-04-05
  • 打赏
  • 举报
回复
use tempdb
go
select top 10000000 identity(int,1,1) test into test from master..syscolumns x, master..syscolumns x2
go

alter table test add primary key(test)
go
set rowcount 5000000
declare @xID int

select @xID = test from test
print @xID
set rowcount 10

select * from test where test > @xID
set rowcount 0
realgz 2007-04-05
  • 打赏
  • 举报
回复
每看题就回帖..汗 =
realgz 2007-04-04
  • 打赏
  • 举报
回复
--要极其优化的话 id上必须有聚集索引
set rowcount 10
declare @xID int
select @xID=500001
select * from [table] where ID > @xID
set rowcount 0


--用top 效率是不行地.........

dawugui 2007-04-04
  • 打赏
  • 举报
回复
取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中能否实现.


22,300

社区成员

发帖
与我相关
我的任务
社区描述
MS-SQL Server 疑难问题
社区管理员
  • 疑难问题社区
  • 尘觉
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧