请问在SQL SERVER里
怎样将查询出的结果,重新另存为一张表!

解决方案 »

  1.   

    select * into newtable from sourcetable;
      

  2.   

    select * into from tbselect * into tmp from (子查询) t
      

  3.   

    select col1,col2,col3,... into newtable from sourcetable where ......;
      

  4.   

    select   *   into   tmp from   tb select   *   into   tmp   from   (子查询)   t
      

  5.   

    select * from tablename
    这是查询结果吧。只需要
    select * into newtable from tablename
      

  6.   

    select * into 新表 from 原表
      

  7.   

    楼主的问题大家已经解决!
    下面我来教楼主放分!
    1.先在本贴的上部左侧找到"管理帖子"的按钮
    2.点一下
    3.把分数适当的分配好
    4.把自己的登录密码输入
    5.再找到结帐按钮
    6.再点一下
    7.再点一下确定
    8. over,放分成功
      

  8.   

    select 字段1,字段2,.... into table插入的 from table数据来源