使用UNION ALL在MYSQL中通过单个查询在两个表中插入记录

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

mysql> create table DemoTable1
   -> (
   -> StudentName varchar(20),
   -> StudentMarks int
   -> );

为了理解上述概念,让我们创建第二个表。

mysql> create table DemoTable2
   -> (
   -> Name varchar(20)
   -> );

使用插入命令在表中插入一些记录-

mysql> insert into DemoTable2 values('Chris');

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

mysql> select * from DemoTable2;

这将产生以下输出-

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

这是通过单个MySQL查询选择和插入记录的查询-

mysql> insert into DemoTable1
   -> select Name,89 from DemoTable2
   -> union all
   -> select Name,98 from DemoTable2;
Records: 2  Duplicates: 0  Warnings: 0

现在您可以从第一个表中选择记录-

mysql> select * from DemoTable1;

这将产生以下输出-

+-------------+--------------+
| StudentName | StudentMarks |
+-------------+--------------+
| Chris       |           89 |
| Chris       |           98 |
+-------------+--------------+
2 rows in set (0.00 sec)