db2连接字符串

 

select 'a'||'b'||'c' from SYSIBM.SYSDUMMY1
select 'a' concat 'b' concat 'c' from SYSIBM.SYSDUMMY1
select  concat(concat('a','b'),'c') from SYSIBM.SYSDUMMY1

 

你可能感兴趣的:(字符串,db2,连接,concat)