直接在sql里面排序就行了
select * from 你的表
where 1=1
/*你的限制条件*/
/*升序排序*/
order by 审核时间 acs
/*降序排序*/
order by 审核时间 desc
两种方式:1、sql中order by;2、单元格排序