鹏翔.NET 技术

鹏翔.NET 技术

博客园 首页 新随笔 联系 订阅 管理
  2 Posts :: 1 Stories :: 5 Comments :: 14 Trackbacks
SQL查找第n条记录的方法:
select top 1 * from table where id not in (select top n-1 id from table) temptable0

SQL查找第n条开始的m条记录的方法:
select top m * from table where id not in (select top n-1 id from table) temptable0)

(注:表中必须有一个唯一值字段才可适用此方法。)
0
0
(请您对文章做出评价)
» 下一篇:DNN图片变幻模块roc_PictureSwap
posted on 2006-03-10 09:24 鹏翔.NET 技术 阅读(2077) 评论(15)  编辑 收藏 网摘 所属分类: MS SQL

Feedback

#1楼 2007-09-21 19:49 lbq1221119      
你这个方法效率多差啊
  回复  引用  查看