复制N条数据 1.不同的表 insert into 表1 select * from 表2 where +条件 2.同一表中 insert into 表 (字段1,字段2,字段3) select 字段1,字段2,字段3 from 表 where +条件 3.在创建表时,插入另一张表里面的某些数据 create table 新表 AS select * from 表2 where +条件