select *(or column names)
from ..
into..

解决方案 »

  1.   

    select * from XXX into...
      

  2.   

    Insert Into Table1 (...) Select ... From Table2
      

  3.   

    select 'insert into tablename (ID,name,birthday) values( ' +
       convert(nvarchar(20),ID) + ',"' + name + '","' + birthday + '")'差不多是这个样子,试试吧!
      

  4.   

    select 'insert into tablename (ID,name,birthday) values( ' +
       convert(nvarchar(20),ID) + ',"' + name + '","' + birthday + '")'
    from tablename不好意思刚才差了半句!!
      

  5.   

    Insert Into Table1 (...) Select ... From Table2
      

  6.   

    luotitan(泰坦) 的做法
    现在能支持嵌套吗?
      

  7.   

    select into (不是很简单吗)
      

  8.   

    Insert Into Table1 (...) Select ... From Table2