如何查询数据库表中指定行之间的数据呢?
3个回答
展开全部
sqlserver2000中:
select top 50 * from 表 where id not in (select top 29 id from 表)
sqlserver2005中:
select top 50 * from 表 except select top 29 * from 表
Oracle中:
select * from 表 whre rownum<=50 minus select * from 表 where rownum<=29
mysql中:
select * from 表 limit 30,50
select top 50 * from 表 where id not in (select top 29 id from 表)
sqlserver2005中:
select top 50 * from 表 except select top 29 * from 表
Oracle中:
select * from 表 whre rownum<=50 minus select * from 表 where rownum<=29
mysql中:
select * from 表 limit 30,50
展开全部
select top 50 * from 表 where 表数据的唯一标识 not in
(select top 30 表数据的唯一标识 from 表)
(select top 30 表数据的唯一标识 from 表)
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
楼上的用top的话必须按一定规则排序,比如按照ID排,但是正序跟倒叙查出的结果也不一样
不知道 你想问什么如果你知道30到50的排序 你完全可以用 select * from 表 where id between 30 and 50
或者用where id>30 and id <50
不知道 你想问什么如果你知道30到50的排序 你完全可以用 select * from 表 where id between 30 and 50
或者用where id>30 and id <50
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询