select first_name first
from(
select  first_name ,row_number()over(order by first_name )rn
from employees
 order by emp_no
)t 
where rn % 2 =1