请详细点,谢谢!

解决方案 »

  1.   

    用oracle9 + c# .net 2003
      

  2.   

    insert into table_1 select * from table_2;
    commit;
      

  3.   

    insert into tab_b
    select t.a,t.b,t.c
    from tab_a t
    where rownum<10;
      

  4.   

    SQL> select * from test00;USERNAME                    PAY
    -------------------- ----------
    mikle                       500SQL> select * from test000;USERNAME                    PAY
    -------------------- ----------
    mikle_22                    800SQL> insert into test00 select * from test000;1 row insertedSQL> commit;Commit completeSQL> select * from test00;USERNAME                    PAY
    -------------------- ----------
    mikle_22                    800
    mikle                       500字段要一致,不一致的话,
    insert into table_1(comlunm_1,column_2) select column_1,column_2 from table_2;
    commit;
      

  5.   

    insert into **表(**字段)
    select **字段 from ##表 where @@条件
      

  6.   

    lz
    你的.net程序里面只要
    insert into table_1 select * from table_2;即可
      

  7.   

    谢谢几位,我没有说清楚,是从一个表中读出了几条语句,而不是全部.insert into table_1 select * from table_2 where ...;那就加where条件