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)
热门推荐
5 短祝福语简短暖心
10 结婚祝福语粤语大全简短
11 晚上祝福语女生文案简短
12 法语妈妈生日祝福语简短
13 药厂开工祝福语大全简短
14 蛋糕节日祝福语简短英文
15 跨年的生日祝福语简短
16 文案祝福语英文短句简短
17 在家聚餐婚礼祝福语简短
18 学生节祝福语大全简短