写出一条Sql语句: 取出表A中第31到第40记
22 查阅
参考答案:
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)