1、当另外这个表不存在时 select 列名1,列名2~ into 新表名 from 旧表名 2、当另外这个表存在时 insert into 数据库名.新表名 (列名) select 列名 from 数据库名.旧表名 --新表的列类型要和旧表的列类型一样