oracle中如何去掉重复的数据? 最简单的办法是 select distinct
ORACLE 删除重复数据 我的已经试过了,【行】。删除相同行(除主键外,其它属性值相同的行),举个例子给你看看吧。delete from dept a where a.deptnoselect min(deptno)from dept t group by(dname,loc)having count(*)>;1 and a.dname=t.dname and a.loc=t.loc其中,dept的主键是deptno,针对(dname,loc)这两个属性值相同的行,把重复的删除,留下deptno值最小的那一行。你的表主键是user_id吧,重复的属性值是(company_id,fee_date,insure_id)吧,你的可以改成以下:delete from t_insure_feed a where a.user_idselect min(user_id)from t_insure_feed t group by(company_id,fee_date,insure_id)having count(*)>;1 and a.company_id=t.company_id and a.fee_date=t.fee_date and a.insure_id=t.insure_id你建的表没有主键?也许你的表没。直接试一下第3条吧。不给我红旗就不跟你玩了。3.可以新创建一张表,该表装载没有重复的行create table mytemp asselect user_id,company_id,fee_date,insure_id/*列出所有的列*/from t_insure_feed group by(user_id,company_id,fee_date,insure_id/*列出所有的列*/);查询:select*from mytemp;1.查询重复(usr_id)的行:select 。
oracle中怎么去掉某个字段重复数据库 假如表 tb 有 id,name 两列,想去掉name中重复的,保留id最大的数据。delete from tb awhere id not in(select max(id)from tb b where b.name=a.name)若不是这个意思,那么说明的你意图。