SQL 將兩個結構相同的表合併到成一個表

select *  into 新表名  from (select * from T1 union all select * from T2)  這個語句能夠實現將合併的數據追加到一個新表中。  不合並重複數據  select * from T1 union all select * from T2  合併重複數據  select * from T1 union select * from T2  
相關文章
相關標籤/搜索