Insert Into Table2(Field1,Field2)//字段名
Select * From Table1 

解决方案 »

  1.   

    insert into table2 values(select * from table1)
      

  2.   

    Table2和Table1中的字段数量、字段类型要保持一致,数量不同肯定出错;字段类型不同则在大部分情况下要出错!
      

  3.   

    你不是说两个表结构一样吗?结构一样这样写时可以的。不一样的话,得
    Insert Into Table2(Field1,Field2)
    Select Field1,Field2 From Table1 
      

  4.   

    将这句话写在query控件中并Query.ExecSQL;吗!