使用 MySQL 将列合并到行中?
要将列合并到行中,请使用 UNION ALL。以下是语法 −
语法
select yourColumnName1 from yourTableName union all select yourColumnName2 from yourTableName;
首先让我们创建一个表 −
mysql> create table DemoTable -> ( -> Value1 int, -> Value2 int -> ); Query OK, 0 rows affected (0.88 sec)
使用 insert 命令在表中插入一些记录 −
mysql> insert into DemoTable values(100,200); Query OK, 1 row affected (0.17 sec) mysql> insert into DemoTable values(500,600); Query OK, 1 row affected (0.18 sec)
使用 select 语句显示表中的所有记录 −
mysql> select *from DemoTable;
将生成以下输出 −
+--------+--------+ | Value1 | Value2 | +--------+--------+ | 100 | 200 | | 500 | 600 | +--------+--------+ 2 rows in set (0.00 sec)
这是将列合并到行中的查询 −
mysql> select Value1 from DemoTable -> union all -> select Value2 from DemoTable;
将生成以下输出 −
+--------+ | Value1 | +--------+ | 100 | | 500 | | 200 | | 600 | +--------+ 4 rows in set (0.00 sec)
广告