table1:
name,
address,
phone
table2:
name,
location,
mobile
table1
只是一个空白数据架构。 table2
有数据。
我想将table2
数据插入table1
架构。
如何插入name-->name
,address-->location
和phone-->mobile
答案 0 :(得分:1)
insert into table1 (name, address, phone)
select name, location, mobile from table2