MySQL的create table as 與 like區別

Eternallyc發表於2018-09-05

對於mysql的複製相同表結構方法,有create table as 和create table like 兩種,區別是什麼呢?

    create table t2 as select * from t1 where 1=2 ; 或者 limit 0;

as建立出來的t2表(新表)缺少t1表(源表)的索引資訊,只有表結構相同,沒有索引。

    create table t2 like t1 ;

like 建立出來的新表包含源表的完整表結構和索引資訊

二者的用途:

    as用來建立相同表結構並複製源表資料

    like用來建立完整表結構和全部索引

相關文章