MySQL将多列数据合并为1列

时间:2019-01-07 23:24:03

标签: mysql multiple-columns

我想将多列数据合并为一列。

例如:

这是我拥有的表结构:

[Color], [Size] , [Other]
White  , 23"x22", something
Black  , 22"x44", test

这是我想要实现的:

[Other_Attributes]
color=White,size=23"x22",other=something
color=Black,size=22"x44",other=test

如何使用MYSQL实现这一目标

1 个答案:

答案 0 :(得分:1)

类似的事情会有所帮助

select CONCAT('color=',Color,',size=', Size, ',other=', Other) concat_col 
From Tbl