当前位置 : 主页 > 数据库 > mssql >

删除重复记录

来源:互联网 收集:自由互联 发布时间:2021-04-05
我们经常在数据库中有重复的记录这时候我们希望删除那些重复的记录 你不要告诉我你是一条条手动删除的哈: selectdistinct*intonewtableformtablename droptabletablename select*intotablefromnewtable drop
我们经常在数据库中有重复的记录这时候我们希望删除那些重复的记录
你不要告诉我你是一条条手动删除的哈:

select distinct * into newtable form tablename
drop table tablename
select * into table from newtable
drop table newtable
思路好了就好做.
网友评论