标签:
1、说明:复制表(只复制结构,源表名:a 新表名:b) 法一:select * into b from a where 1<>1法二:select top 0 * into b from a2、说明:拷贝表(拷贝数据,源表名:a 目标表名:b)insert into b(a, b, c) select d,e,f from a;
在SQL SERVER中,怎样用T-sql语句拷贝表??
原文地址:http://www.cnblogs.com/qianlao/p/5728681.html