with t as (select *,ROW_NUMBER() over(order by first_name)as ranking from employees order by emp_no)

select t.first_name
from t
where power(-1,ranking)<0 


核心在于排个序