1、oracle 、sqlite、postgresql中拼接方式都可以用以下方式
SELECT 订单id||'-'||客户id as 拼接后字段 FROM 订单
2、SQL Server 使用+号进行拼接;
select t.订单id+'_'+ t.客户id as 拼接后字段 from (
SELECT '10001' as 订单id,'3686' as 客户id
) t
3、sql server中如果一个是数字,一个是文本类型的。要转换一下
select t.订单id+'_'+ cast(t.客户id as varchar(30)) as 拼接后 from (
SELECT '10001' as 订单id, 368 as 客户id
) t
4、MySQL 使用 concat 函数进行拼接;同时postgres数据库也支持以下方式接接
SELECT concat(订单id,'-',客户id) as 拼接后字段 FROM 订单
5、如果是帆软单元格中
a2+"_"+b2
CONCATENATE(a2,"-",b2)