摘要: 解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 阅读全文
posted @ 2019-06-05 13:16 编程菜小鸟 阅读(446) 评论(0) 推荐(0) 编辑