本题要点如下:1.字符串的截取:本题我采用的left函数;2.字符串拼接函数concat;3.小写字母转大写字母UPPER select cust_id,cust_name,upper(concat(left(cust_contact,2),left(cust_city,3))) user_login from Customers 关于字符串的截取,常用的几种方式如下: 1、left(str,length) 从左边截取length 2、right(str,length)从右边截取length 3、substring(str,index)当index>...