select cust_id, cust_name, upper(CONCAT (LEFT(cust_name, 2), LEFT(cust_city, 3))) as user_login from Customers 解题思路: 1、截取顾客名称的前两位以及城市的前三位LEFT 2、将截取的字符串进行拼接contact() 3、将最...