SqlServer能不能查询表中的50到100条记录
1个回答
推荐于2018-05-07 · 知道合伙人软件行家
关注
展开全部
sqlserver不支持limit只能变相实现了
取第m条到第n条记录:
select top (n-m+1) id from tablename
where id not in (
select top m-1 id from tablename
)
50到100条
select top (51) id from tablename
where id not in (
select top 49 id from tablename
)
取第m条到第n条记录:
select top (n-m+1) id from tablename
where id not in (
select top m-1 id from tablename
)
50到100条
select top (51) id from tablename
where id not in (
select top 49 id from tablename
)
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询