mysql: select concat(str1,str2,str3) from 表; -- concat可以带多个参数
oracle : select concat(str1,str2) from 表; -- concat只能带两个参数
select str1||str2||str3 from 表; -- || 可以多个拼接
SQLServer:+ --(还未测试)
mysql: select concat(str1,str2,str3) from 表; -- concat可以带多个参数
oracle : select concat(str1,str2) from 表; -- concat只能带两个参数
select str1||str2||str3 from 表; -- || 可以多个拼接
SQLServer:+ --(还未测试)