假如要自己实现create table as 语法支持

两步:create table new_table_name like old_table_name;
insert into new_table_name select * from old_table_name;