-1
我有值的兩個不同的列:團結2列到一個單一的一個與MySQL
列1:
johg
michael
pesho
列2:
sth
other
cofee
我想團結這兩列像此:
johg
michael
pesho
sth
other
cofee
我有值的兩個不同的列:團結2列到一個單一的一個與MySQL
列1:
johg
michael
pesho
列2:
sth
other
cofee
我想團結這兩列像此:
johg
michael
pesho
sth
other
cofee
嘗試CONCAT
在MySQL中,如果你想在兩列中的兩個連接值。
SELECT CONCAT(`column1`,',',`column2`)
FROM
table_name
或者你想爲UNION
SELECT `column1` AS unique_col
FROM
table_name
UNION ALL
SELECT `column2` AS unique_col
FROM
table_name
希望這有助於。
你試過了嗎? –