select * from (
select rownum as rn ,t.* from
(
select s.* ,c.classes_name from t_student s join t_classes c on s.classes_id = c.classes_id
) t where rownum <= pageNo * pageSize
) where rn > (pageNo - 1) * pageSize
分页查找SQL
最新推荐文章于 2024-11-08 16:29:45 发布