苏州齐光智能:sql查询问题

来源:百度文库 编辑:神马品牌网 时间:2024/05/10 08:14:39
查询一个表中第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;