写出一条 Sql 语句: 取出表 A 中第 31
20 查阅
参考答案:
2. 解 1: select top 10 * from A where id not in (select top 30 id from A)
解 2: select top 10 * from A where id > (select max(id) from (select top 30 id
from A )as A)