请写出一条SQL语句,取出sql表A中第31到40的记录(以自动增长ID为主键),ID为不连续ID
select top 10 A from (select top 40 * from A order by id) A order by id desc
请写出一条SQL语句,取出sql表A中第31到40的记录(以自动增长ID为主键),ID为不连续ID
select top 10 A from (select top 40 * from A order by id) A order by id desc