CREATE TABLE 表名 AS SELECT 語句

1.新表不存在
複製表結構即數據到新表

create table new_table

select * from old_talbe;

 

這種方法會將old_table中所有的內容都拷貝過來,用這種方法需要注意,new_table中沒有了old_table中的primary key,Extra,auto_increment等屬性,需要自己手動加,具體參看後面的修改表即字段屬性.
只複製表結構到新表

# 第一種方法,和上面類似,只是數據記錄爲空,即給一個false條件

create table new_table

select * from old_table where 1=2;



# 第二種方法

create table new_table like old_table;

 

2.新表存在
複製舊錶數據到新表(假設兩個表結構一樣)

insert into new_table

select * from old_table;

 

複製舊錶數據到新表(假設兩個表結構不一樣)

insert into new_table(field1,field2,.....)

select field1,field2,field3 from old_table;

 

複製全部數據

select * into new_table from old_table;

 

只複製表結構到新表

select * into new_talble from old_table where 1=2;

 

 create table a like b;

create table c_relation as select c.memberId,m.merchantId,memb.phone from c_merchant as m inner join c_customer c on c.userId=m.userId inner join c_member memb on memb.id=c.memberId where memb.status=10;

 

由上面的使用 CREATE TABLE 表名 AS SELECT 語句可以看出:

    1:只會複製表數據和表結構,不會有任何約束。

    2:當 where 條件不成立時,只複製表結構,沒有任務數據

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章