问题:请你将employees中的first_name,并按照first_name最后两个字母升序进行输出。

right(字段,n)表示从右往左取字段中n位数字,

select first_name from employees
order by right (first_name, 2)