一、使用“||”连接

SELECT user_name,'中文名:'|| china_name as "name" FROM "SYS_USER" where id=2089

结果

 二、使用CONCAT()函数连接

SELECT user_name,concat('中文名:', china_name) as "name" FROM "SYS_USER" where id=2078

结果

 在使用这个函数时,当拼接的值不是字符串时,oracle会自动转换成字符串。

需要注意的时,此函数里面只支持两个参数,不支持超过两个的参数,否则会报:参数个数无效。当需要多个参数进行拼接时,可以使用多个concat()函数进行嵌套

SELECT user_name,concat(concat(concat('中文名:', china_name),ENTERPRISE_ID),email) as "介绍" FROM "SYS_USER" where id=2027

结果

 注意:mysql中不能使用||来连接字符串,只能用concat来连接

<if test="channelType!=null and channelType!=''">
                    AND t1.channel_type LIKE concat('%',#{channelType},'%')
                </if>

oracle中concat只支持连接两个参数的项目案例:

select 
    concat((select d1.CHI_SHORT_NAME from t_area_code d1 where a.province_code=d1.id and d1.ISVALID='1'), concat(concat((select d2.CHI_SHORT_NAME from t_area_code d2 where a.city_code=d2.id and d2.ISVALID='1'), (select d3.CHI_SHORT_NAME from t_area_code d3 where a.area_code=d3.id and d3.ISVALID='1')), a.detailed_address)) as localAddress from t_agent a
......

注意:mysql中使用concat进行字符串拼接时,参数个数没有限制。

 

posted on 2021-05-06 10:42  周文豪  阅读(4094)  评论(0编辑  收藏  举报