【思路】
用right(first_name,1)获取first_name的最后一个字母
用left(right(first_name,2),1) 获取first_name的倒数第二个字母
【代码如下】
select first_name from employees order by left(right(first_name, 2),1), right(first_name, 1)