发布网友 发布时间:2022-05-03 02:51
共3个回答
懂视网 时间:2022-05-03 07:13
select concat(name,id) as name from table 这种将两列的结果拼在一起
select concat(concat(name,‘ ‘),id) as nameid,age from table 这种将两列的结果拼在一起,中间有空格隔开
select name+id as name from table 这种如果有一列的值为null 则结果为null
Sql将两列字段合并在一列
标签:sel eid null 空格 ble cat 字段 bsp 合并
热心网友 时间:2022-05-03 04:21
select xx as zz from 表 union all select yy from 表;
热心网友 时间:2022-05-03 05:39
两列的数据类型要一样