select cust_id, cust_name, concat(upper(left(cust_name,2)), upper(left(cust_city,3))) as user_login from Customers order by cust_id; left(string,len):截取字符串从左边开始的len个字符right(string,len) :截取字符串从右边开始的len个字符mid(string,start,len):从指定开始的地方开始截取len个字符substring(string,start,len):和mid用法类似-------...