[]创建一个新表,结构用已有表的。应该如何做哦

[求助]创建一个新表,结构用已有表的。应该怎么做哦?
如题!

------解决方案--------------------
SQL code
create table b as select * from a;
truncate table b;