select charaponame,qutype,quno,context into #TEMP1 FROM YOURTABLE 
#TEMP1 临时表

解决方案 »

  1.   

    select charaponame,qutype,quno,context into 新表 from HidCases
      

  2.   

    CREATE VIEW myview 
    AS 
    select charaponame,qutype,quno,context from HidCases
    GO
      

  3.   

    select charaponame,qutype,quno,context into 新表 from HidCases
      

  4.   

    create table 新表  as select charaponame,qutype,quno,context from HidCases;这样就ok了,数据也都insert进去了
      

  5.   

    select charaponame,qutype,quno,context into 新表 from HidCasesor 
    Create view 你的视图名
    As
    select charaponame,qutype,quno,context from HidCases