如题!!

解决方案 »

  1.   

    右键资源管理器你的表 create 到新窗口 就会生成创建表的脚本,再还个表名F5执行就创建好了
    如果是创建同结构的临时表可以用下面的
    select * into #tb from tb where 1=0#tb就是以创建好的同结构临时表
      

  2.   


    1、说明:复制表(只复制结构,源表名:a 新表名:b) (Access可用) 
    法一:select * into b from a where 1 <>1 
    法二:select top 0 * into b from a 
      

  3.   


    说明:复制表(只复制结构,源表名:a 新表名:b) (Access可用) 
    法一:select * into b from a where 1 <>1 
    法二:select top 0 * into b from a 
      

  4.   

    select top 0 * into 新表名 from a 
      

  5.   

      select * into tablename from tb where 1=0