怎样列出第10条以后的记录?
要SQL语句
[解决办法]
--假设ID为唯一字段
select *
from 表名
where id not in (select top 10 id from 表名)
发布时间: 2012-01-21 21:31:43 作者: rapoo
怎样列出第10条以后的记录?
要SQL语句
[解决办法]
--假设ID为唯一字段
select *
from 表名
where id not in (select top 10 id from 表名)