MySQL 字符串拼接
在Mysql 数据库中存在两种字符串连接操作.具体操作如下
1. CONCAT(string1,string2,…) 说明 : string1,string2代表字符串,concat函数在连接字符串的时候,只要其中一个是NULL,那么将返回NULL.
select a.USERCODE,a.USERNAME, CONCAT(a.USERNAME , '(' , a.USERCODE , ')') as userrole ,a.EMAIL,a.MOBILE from rzzxdb.t_x28_user a ;
原创文章,作者:Maggie-Hunter,如若转载,请注明出处:https://blog.ytso.com/5015.html