34,837
社区成员




select distinct * into tmp from tb
delete from tb
sp_rename 'tmp','tb'
select distinct * into # from tb
truncate table tb
insert into tb
select * from #
drop table #
select distinct * into # from tb
truncate table tb
insert into tb
select * from #
drop table #