标签:
select top 5 * from books where id not in(select top (5*(5-1)) id from Books order by id) order by id select top 2 * from Users where id not in(select top (2*(2-1)) id from Users) select top 10 id from Books
标签:
原文地址:http://www.cnblogs.com/myblogslh/p/4216741.html