怎样列出第10条以后的记录?要SQL语句[解决办法]--假设ID为唯一字段select *from 表名where id not in (sel
怎样列出第10条以后的记录?
要SQL语句
[解决办法]
--假设ID为唯一字段
select *
from 表名
where id not in (select top 10 id from 表名)
怎样列出第10条以后的记录?
要SQL语句
[解决办法]
--假设ID为唯一字段
select *
from 表名
where id not in (select top 10 id from 表名)