2016-09-24 76 views
0
table1: 
name, 
address, 
phone 


table2: 
name, 
location, 
mobile 

table1只是一個空白數據模式。 table2有數據。兩個表格數據之間的映射

我想將table2數據插入table1模式。

我怎樣才能插入數據像name-->nameaddress-->locationphone-->mobile

+0

的可能的複製[表的插入所有的值到SQL另一個表(http://stackoverflow.com/questions/576441/將所有表中的值插入到另一個表中) – starko

+0

您在這裏。我找到另一個例子並改變鏈接 – starko

回答

1
insert into table1 (name, address, phone) 
select name, location, mobile from table2