两个表数据之间的映射

时间:2016-09-24 10:22:28

标签: mysql sql database

table1:
name,
address,
phone


table2:
name,
location,
mobile

table1只是一个空白数据架构。 table2有数据。

我想将table2数据插入table1架构。

如何插入name-->nameaddress-->locationphone-->mobile

等数据

1 个答案:

答案 0 :(得分:1)

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