1、使用rowid、rownum位列分页 select * from table1 where rowid in ( select rid from ( select rid,rownum rn from ( select rowid rid from table1 order by fid desc ) where rownum4 ) where rn=1 ) order by fid; 2、使用rownum伪列进行分页 select *
1、使用rowid、rownum位列分页
select * from table1 where rowid in (select rid from (select rid,rownum rn from (select rowid rid from table1 order by fid desc) where rownum) where rn>=1) order by fid;
2、使用rownum伪列进行分页
select * from (select t1.*,rownum rn from (select * from table1 order by fid) t1 where rownum=1 order by fid
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号