输出重复数据

Posted applekingghfhfhbr

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了输出重复数据相关的知识,希望对你有一定的参考价值。

 sql:

       select distinct * into #tmp from tablename

       drop table tablename

       select * into tablename from #tmp

       drop table #tmp

2.用游标进行删除

declare @max integer,@id integer 
declare cur_rows cursor local for select 主字段,count(*) from tablename group by 主字段 having count(*) > 1 
open cur_rows 
fetch cur_rows into @id,@max 
while @@fetch_status=0 
begin 
select @max = @max -1 
set rowcount @max 
delete from tablename where 主字段= @id 
fetch cur_rows into @id,@max 
end 
close cur_rows 
set rowcount 0

以上是关于输出重复数据的主要内容,如果未能解决你的问题,请参考以下文章

输出熊猫数据框中所有列的数据[重复]

删除重复数据 且输出数据与输入数据一致

如何对齐python输出[重复]

输出重复数据

我有以下数据集,我想根据重复次数将此数据更改为目标输出数据集

如何抓取后续页面并将输出放入数据框中[重复]