select * into 要新创建的表名 from 视图名称 数据迁移: 表结构完全一样 insert into 表1 select * from 表2表结构不一样(这种情况下得指定列名) insert into 表1 (列名1,列名2,列名3) select 列1,列2,列3 from 表2