create table ... as select ……
Using the CREATE TABLE ... AS SELECT ... command: This command will copy acrooss to the new table all the data,but the constraints triggers ,and so on will not be transferred to the new table.
什么意思呢?
这个命令将把所有数据复制到新表中,但是约束触发等不会被转移到新表中
1.索引约束会消失。(primary key,Extra,auto_increment等属性)
2.原表中的默认值也会消失 。
3.原表保存的数据格式,与表的类型可能会发生变化。