题目描述:获取Employees中的first_name,查询按照first_name最后两个字母,按照升序进行排列。
两种写法:
RIGHT(s,n),返回字符串 s 的后 n 个字符。

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

SUBSTR(s, start, length),从字符串 s 的 start 位置截取长度为 length 的子字符串。

select first_name
from employees
order by substr(first_name,-2,2)

Mysql常用函数:https://www.runoob.com/mysql/mysql-functions.html