select x.ename
from (
select a.ename,
(select count(*)
from emp b
where b.ename <=a.ename) as rn
from emp a
) x
where mod(x.rn,2) =1;

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-05-08
  • 2022-12-23
  • 2021-10-11
  • 2021-12-19
  • 2022-12-23
  • 2021-07-14
猜你喜欢
  • 2021-12-07
  • 2022-12-23
  • 2022-12-23
  • 2021-11-08
  • 2022-01-28
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案