根据查询结果 create table

MySQL不支持insert into table_name select column_list from source_table的语法,取而代之的是:

create table new_table (select column_list from source_table)