让我们首先创建一个表。以下是查询-
mysql> create table insertOneToAnotherTable -> ( -> Value int -> );
以下是使用insert命令在表中插入一些记录的查询-
mysql> insert into insertOneToAnotherTable values(100); mysql> insert into insertOneToAnotherTable values(200); mysql> insert into insertOneToAnotherTable values(300); mysql> insert into insertOneToAnotherTable values(400); mysql> insert into insertOneToAnotherTable values(500); mysql> insert into insertOneToAnotherTable values(600);
以下是使用select语句显示表中所有记录的查询-
mysql> select * from insertOneToAnotherTable;
这将产生以下输出-
+-------+ | Value | +-------+ | 100 | | 200 | | 300 | | 400 | | 500 | | 600 | +-------+ 6 rows in set (0.00 sec)
这是创建第二个表的查询-
mysql> create table recieveDateFromTable -> ( -> Value1 int, -> Value2 int -> );
以下是从一个MySQL表到另一个表的INSERT INTO查询,并设置一个列的值-
mysql> insert into recieveDateFromTable(Value1,Value2) select Value,1000 from insertOneToAnotherTable; Records: 6 Duplicates: 0 Warnings: 0
让我们显示第二个表中的所有记录。以下是查询-
mysql> select * from recieveDateFromTable;
这将产生以下输出-
+--------+--------+ | Value1 | Value2 | +--------+--------+ | 100 | 1000 | | 200 | 1000 | | 300 | 1000 | | 400 | 1000 | | 500 | 1000 | | 600 | 1000 | +--------+--------+ 6 rows in set (0.00 sec)