select * into databasename..aa from table2

解决方案 »

  1.   

    select * into aa from table2 
    INSERT INTO AA SELECT * FROM TABLE2
      

  2.   

    select * into aa from table2 生成表查詢
    or
    insert into aa (f1,f2,f3) 向己生成表插入查詢的數據
    select f1,f2,f3 from table2
      

  3.   

    兄弟啊,你只是拷贝一张表啊
    select * from table2 into table aa 
    table2
    TO:
    select * into aa from table2 
    table2
      

  4.   

    select * into 新表 from 旧表
      

  5.   

    select * into 目标库名..新表 from 源库名..旧表