使用 MySQL 的 UNION 选择查询选择表名作为列?

mysqlmysqli database

您可以使用 AS 命令来实现这一点。让我们首先创建一个表 −

mysql> create table DemoTable
   (
   Name varchar(20)
   );
Query OK, 0 rows affected (0.56 sec)

使用 insert 命令在表中插入记录 −

mysql> insert into DemoTable values('John');
Query OK, 1 row affected (0.18 sec)

使用 select 语句显示表中的所有记录 −

mysql> select * from DemoTable;

这将产生以下输出 −

+------+
| Name |
+------+
| John |
+------+
1 row in set (0.00 sec)

这是创建第二个表的查询。

mysql> create table DemoTable2
   (
   Name varchar(20)
   );
Query OK, 0 rows affected (0.59 sec)

使用 insert 命令在表中插入记录 −

mysql> insert into DemoTable2 values('Bob');
Query OK, 1 row affected (0.20 sec)

使用 select 语句显示表中的所有记录 −

mysql> select *from DemoTable2;

这将产生以下输出 −

+------+
| Name |
+------+
| Bob  |
+------+
1 row in set (0.00 sec)

以下是在 MySQL 中的 UNION 选择查询中选择表名作为列的查询 −

mysql> select 'DemoTable' as DemoTable,Name from DemoTable
union
select 'DemoTable2' as DemoTable2,Name from DemoTable2
;

这将产生以下输出 −

+--------------+------+
| DemoTable    | Name |
+--------------+------+
| DemoTable    | John |
| DemoTable2   | Bob  |
+--------------+------+
2 rows in set (0.00 sec)

相关文章