如题,不知道大家有什么好的方法

解决方案 »

  1.   

    select * into b..table from a..table
      

  2.   

    insert into B select * from A
      

  3.   

    如果不是在同一个服务器上的话,就要用OPENROWSET 函数了
      

  4.   

    insert into 表1(字段1,字段2,字段3) select 字段1,字段2,字段3from 表2
      

  5.   

    是同一台服务器上的不同数据库,可以直接用select into 吗