select cust_id, cust_name, upper(concat(substring(cust_name,1,2),substring(cust_city,1,3))) as user_login from Customers # 提取前2个字符 # substring(str,1,2) # 提取前3个字符 # substring(str,1,3) # SUBSTR(cust_contact,1,2) # SUBSTR(cust_city,1,3) # 字符串的截取:substring(字符串,起始位置,截取字符数) # 字符串的拼接:concat(字符串1,字符串2...