【SQL 資料庫】將一張資料表資訊複製到另一張資料表

weixin_34377065發表於2016-12-01

一.MySQL資料庫

1.如果目標表存在

INSERT INTO 目標表  SELECT  * FROM 源表;

2.如果目標表不存在

CREATE TABLE 目標表 SELECT * FROM  源表;

 

 

二.SQL Server資料庫

1.如果目標表存在

insert into 目標表 select * from  源表;

2.如果目標表不存在

select * into  目標表  from  源表;

 

三.Oracle資料庫

1.如果目標表存在

insert into 目標表 select * from  源表;

commit;

2.如果目標表不存在

create table 目標表 as select * from  源表;

 

相關文章