MySql - 为其他表的每个ID插入行

时间:2014-07-22 18:43:06

标签: mysql

我确信这很简单我只是无法获得正确的搜索字词来找到答案。 但我有一个表格,其中包含ID

的地点
ID| Name

1 | Foo

2 | Bar

3 | Blah

和另一个表(table2),其中有一个引用这些位置ID的字段:

ID| LocationID | Foo | Bar

1 | 1          | ... | ...

2 | 2          | ..

3 | 5          | ...

其中LocationId =来自位置的值。 我想要做的是为位置中的每个ID(1,2,3 ......)添加一个记录到另一个表。 例如:

"insert into table2 (locationID, foo, bar) values (1, "hello", "world");"

"insert into table2 (locationID, foo, bar) values (2, "hello", "world");"

依旧......

2 个答案:

答案 0 :(得分:18)

您可以使用INSERT INTO ... SELECT,因此您的示例

INSERT INTO table2 (locationID, foo, bar) SELECT ID, 'hello', 'world' FROM table1

答案 1 :(得分:2)

您可以执行插入...选择

Insert Table2 (LocationID, Foo, Bar)
Select ID, "Hello", "World"
From Location