select top 0 * into 新表 from 旧表

解决方案 »

  1.   

    select * into newtable from oldtable where 1 = 2
      

  2.   

    select * from tbalename where 1<>1
      

  3.   


    说明:复制表(只复制结构,源表名:a 新表名:b)
    SQL: select * into b from a where 1<>1说明:拷贝表(拷贝数据,源表名:a 目标表名:b)
    SQL: insert into b(a, b, c) select d,e,f from b;
      

  4.   

    select top 0 * into b from a
    select * into b from a where 1<>1