mysql 查詢并合并,MYSQL中同一個數(shù)據(jù)庫中的兩個表中的數(shù)據(jù)怎樣合并?
1、忽略表之間的關(guān)聯(lián)關(guān)系 ALTER TABLE db2.dbo.table NOCHECK CONSTRAINT 關(guān)系名
2、--將沒有重復(fù)的數(shù)據(jù)合并 insert into db2.dbo.table(field1,field2...) select field1,field2... from db1.dbo.table a where a.username not in (select username from db2.dbo.table)
3、將重復(fù)的數(shù)據(jù)寫入臨時表 select field1,field2... into 新的臨時表 from db1.dbo.table a where a.username in (select username from db2.dbo.table)