好久好久好久没有写博客了呀~~~哈哈哈~~~
Mysql查询:
use test;
//使用数据库select id from log_info limit 5,10
//limit关键字
Oracle查询:
select top 10 id from log_info where id not in ( select top 5 id from log_info order by id)order by id;
//手动写,,,,对错需验证