excel表格中同种物资有很多行,相同物资只保留oracle 一行多列求和,但对应的数量求和

> SQL直接删除冗余数据/***删除表中有多行的重复的数据的多余记录,即只保留一行,多余的全删除*/
SQL直接删除冗余数据/***删除表中有多行的重复的数据的多余记录,即只保留一行,多余的全删除*/
mojiebaolong & &
发布时间: & &
浏览:98 & &
回复:0 & &
悬赏:0.0希赛币
SQL直接删除冗余数据
/***删除表中有多行的重复的数据的多余记录,即只保留一行,多余的全删除*///表模型:表名 --tb&&&&&&& ----------&&&&&&& | id| n | v |&&&&&&& ---------&&&&&&& | 1 | a | 3 |&&&&&&& ---------&&&&&&& | 2 | a | 1 |&&&&&&& ---------&&&&&&& | 3 | a | 1 |&&&&&&& ---------&&&&&&& | 4 | b | 2 |&&&&&&& ---------&&&&&&& | 5 | b | 2 |&&&&&&& ---------&&&&&&& | 6 | c | 3 |&&&&&&& ---------&&&&&&& | 7 | d | 1 |&&&&&&& ----------处理后:&&&&&&& ----------&&&&&&& | id| n | v |&&&&&&& ---------&&&&&&& | 1 | a | 3 |&&&&&&& ---------&&&&&&& | 2 | a | 1 |&&&&&&& ---------&&&&&&& | 4 | b | 2 |&&&&&&& ---------&&&&&&& | 6 | c | 3 |&&&&&&& ---------&&&&&&& | 7 | d | 1 |&&&&&&& ----------//--四种代表方式如下,其中同一条语句中的rowid和id可以互相全部取代;max(..)与min(..)效果一致--//1.& delete from tb a where rowid not in&&&&&&&&&&&&&&& (select max(b.rowid) from tb b where a.n=b.n and a.v=b.v);&&&&&&& 或&&&&&&&&&&&&&&& delete from tb a where rowid not in&&&&&&&&&&&&&&&&&&&&&&& (select max(b.id) from tb b where a.n=b.n and a.v=b.v);2.& delete from tb where rowid in&&&&&&&&&&&&&&& (select a.rowid form tb a,tb b where a.rowid&b.rowid&&&&&&&&&&&&&&&&&&&&&&& and a.n=b.n and a.v=b.v);3.& delete from tb where rowid not in&&&&&&&&&&&&&&& (select max(rowid) from tb t group by t.n,t.v);&&&&&&& 或&&&&&&&&&&&&&&& delete from tb where rowid not in&&&&&&&&&&&&&&&&&&&&&&& (select min(id) from tb t group by t.n,t.v);4.& delete from tb where (n,v) in&&&&&&&&&&&&&&& (select n,v from tb group by n,v&&&&&&&&&&&&&&&&&&&&&&& having count(*)&1)&&&&&&&&&&&&&&& and rowid not in&&&&&&&&&&&&&&& (select min(rowid) from tb group by n,v&&&&&&&&&&&&&&&&&&&&&&& having count(*)&1);
本问题标题:
本问题地址:
温馨提示:本问题已经关闭,不能解答。
暂无合适的专家
&&&&&&&&&&&&&&&
希赛网 版权所有 & &&如何将下列Excel表格中的编码重复项合并,并且每种编码的数量求和,A列B列共有926项
小传君0703
多种方法:1优先推荐采用数据透视表:选定数据范围,菜单“插入”中点击“数据透视表”,然后将编码放到行筛选区,数量放到列筛选区,并将数量汇总方式设置为“求和”.2 可以采用公式汇总方式,这个不多说了.
具体怎么操作啊大神
你的数据能不能提供文本格式?图片方式不好直接引用呀。
百度上传不了excel,你有youxiang吗
为您推荐:
其他类似问题
扫描下载二维码

我要回帖

更多关于 一行求和 的文章

 

随机推荐