下牙龈根部发红:sql查询问题

来源:百度文库 编辑:中科新闻网 时间:2024/04/28 14:00:43
查询一个表中第100到200条记录,id 主健,自增但不连续,我用这个
select top 200 * from
table
where not exists
(select top 100 * from
table
where newsid=tbl_info_news.newsid
)

怎么没有结果啊,要怎么写啊,有高手请指点!
是这个
select top 200 * from
table
where not exists
(select top 100 * from
table )

为什么不能显示啊

select *
from "table"
where 1
order by "id" ASC
limit 100,100;