select cust_id,cust_name,upper(concat(substr(cust_contact,1,2),substr(cust_city,1,3))) as user_login from Customers
这是我能想到的,可能不是最简单的,不是最好的
upper()转大写,concat()合并,substr(str,x,y)字符串str x位置开始y个字符长度的字符串