首页 > 代码库 > 使用SQL语句查询某记录的前后N条数据
使用SQL语句查询某记录的前后N条数据
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条数据
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。