select first_name
from (
    select first_name, RIGHT(first_name, 2) as last_two_string
    from employees
    order by last_two_string
) as a;