博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
取n到m条记录的语句
阅读量:6692 次
发布时间:2019-06-25

本文共 853 字,大约阅读时间需要 2 分钟。

取n到m条记录的语句
from:[url]http://bbs.51cto.com/thread-409557-1-1.html[/url]

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
本文转自 boyi55 51CTO博客,原文链接:http://blog.51cto.com/boyi55/38379,如需转载请自行联系原作者
你可能感兴趣的文章
《http权威指南》阅读笔记(二)
查看>>
Javascript特效代码大全(420个)(转)
查看>>
jQuery闭包之浅见,从面向对象角度来理解
查看>>
(原创)北美信用卡(Credit Card)个人使用心得与总结(个人理财版) [精华]
查看>>
gevent
查看>>
LightOJ 1018 Brush (IV)(记忆化搜索)
查看>>
x264编码参数大测试:03 subme与crf(c)
查看>>
对自然数的有限区间散列
查看>>
低端路由器和高端路由的区别
查看>>
android webview 播放swf 失败<彻底解决黑框>
查看>>
应用程序实例——用户信息管理
查看>>
中文分词 mmseg4j 在 lucene 中的使用示例
查看>>
volley 发送post请求
查看>>
ti processor sdk linux am335x evm /bin/setup-uboot-env.sh hacking
查看>>
php 操作数组 (合并,拆分,追加,查找,删除等)
查看>>
[Hibernate] - EAGER and LAZY
查看>>
python 异常类型
查看>>
CentOS进入图形界面
查看>>
C#--web services之wsdl文件生成cs
查看>>
配置Apache+Tomcat实现SSO(单点登录)
查看>>