access 小结
时间:2010-10-30 来源:jianshaohui
  SELECT top 2 * from Contact
  where id>
  (select max(id) from ( select top 8 id from contact order by id asc))
  order by id asc
 相关阅读 更多 + 
    
  时间:2010-10-30 来源:jianshaohui
  SELECT top 2 * from Contact
  where id>
  (select max(id) from ( select top 8 id from contact order by id asc))
  order by id asc