select h.id
  from (select t.id, rownum as rn
          from ysp_application t
         where t.yxbz = 'Y'
         order by t.sqsj asc) h
 where h.rn between 1 and 100
 order by h.rn asc;

 

相关文章:

  • 2022-12-23
猜你喜欢
  • 2021-08-25
  • 2021-06-14
  • 2021-06-27
  • 2021-10-25
相关资源
相似解决方案