码迷,mamicode.com
首页 > 数据库 > 详细

SqlServer将表中数据复制到另一张表

时间:2014-07-29 21:45:02      阅读:369      评论:0      收藏:0      [点我收藏+]

标签:数据   art   div   ar   数据库   sql   type   table   

insert into phone2(ph,attr,type,carrier) select top 1000 ph,attr,type,carrier from phone

将表phone的字段和前1000条数据复制到Phone2表

 

数据库中的某个表删除重复数据(phone2表不能存在)

select distinct  * into phone2 from phone 

 

 

表phone的数据放到phone2中(phone2表可以存在)
insert into phone2(ph,attr,type,carrier) select distinct (ph),attr,type,carrier   from phone

删除phone表
truncate table phone

表phone2的数据重新放回到phone表中,保证表的名字相同
insert into  phone (ph,attr,type,carrier) select ph,attr,type,carrier  from phone2

SqlServer将表中数据复制到另一张表,布布扣,bubuko.com

SqlServer将表中数据复制到另一张表

标签:数据   art   div   ar   数据库   sql   type   table   

原文地址:http://www.cnblogs.com/zxx193/p/3876410.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!