试试这个,绝对可以!
select *
  from
  (
      select t.*, mod(rownum,5) as YS 
        from Your_Table t
  )
  where YS = 0