Insert into yournewtable (field1,field2,...) select field1,field2,... from 
youroldtable where ...

解决方案 »

  1.   

    insert into 表名一(fieldid,fieldname,...)
    select (表名2.fieldid,表名2.fieldname,...)
    from 表名2
    where 条件
      

  2.   

    结构一样的两个表:
    insert into newtablename
    select * from tablename
    where 条件
      

  3.   

    insert newTablename select * from tableName
      

  4.   

    Insert yournewtable (field1,field2,...) select field1,field2,... from 
    youroldtable where ...
      

  5.   

    select * into newtable from table
      

  6.   

    insert newTablename select * from tableName