原sql
select * from tableA order by col desc
分页sql:
select * from (select tmp_.* rownum rn_ from (select * from tableA order by col desc)) where rn_>=1 and rn_<11
Powered by: 博客园 Copyright © 2024 凉水代码 Powered by .NET 9.0 on Kubernetes