0
table1:
name,
address,
phone
table2:
name,
location,
mobile
table1
只是一個空白數據模式。 table2
有數據。兩個表格數據之間的映射
我想將table2
數據插入table1
模式。
我怎樣才能插入數據像name-->name
,address-->location
和phone-->mobile
table1:
name,
address,
phone
table2:
name,
location,
mobile
table1
只是一個空白數據模式。 table2
有數據。兩個表格數據之間的映射
我想將table2
數據插入table1
模式。
我怎樣才能插入數據像name-->name
,address-->location
和phone-->mobile
insert into table1 (name, address, phone)
select name, location, mobile from table2
的可能的複製[表的插入所有的值到SQL另一個表(http://stackoverflow.com/questions/576441/將所有表中的值插入到另一個表中) – starko
您在這裏。我找到另一個例子並改變鏈接 – starko