码迷,mamicode.com
首页 > 数据库 > 详细

使用SQL语句查询某记录的前后N条数据

时间:2014-09-11 18:51:52      阅读:282      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   color   io   使用   strong   数据   div   

id是指当前数据tb_id参数

方法一:

string preSql = "select top 1 * from table where tb_id < " + id + " order by tb_id DESC"

string nextSql = "select top 1 * from table where tb_id > " + id + " order by tb_id ASC"


方法二:

string preSql = "select * from [table] where tb_id = (select MAX(tb_id) from [table] where tb_id<"+ id + ")";
string nextSql = "select * from [table] where tb_id = (select MIN(tb_id) from [table] where tb_id>"+ id + ")";

将查询结果union即可。

使用SQL语句查询某记录的前后N条数据

标签:des   style   blog   color   io   使用   strong   数据   div   

原文地址:http://www.cnblogs.com/binyue/p/3966788.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!