题解 | #获取Employees中的first_name#
获取Employees中的first_name
http://www.nowcoder.com/practice/74d90728827e44e2864cce8b26882105
mysql字符串分割
1、left(str,n)//从左开始分割,截取n位
2、right(str,n)//从右开始分割,截取n位
3、substring(str,pos)//从哪一位开始
substring(str,pos,length)//从哪一位开始截取几位
4、substring_index(str,delim,count)//substring_index(被截取字段,分隔符,关键字出现的次数)
select first_name from employees order by right(first_name,2) asc;