码迷,mamicode.com
首页 > 数据库 > 详细

ORACLE每组只保留一条记录

时间:2015-04-29 21:25:31      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:

删除同一组内其他记录

DELETE from memactivities a where exists
(
select 1 FROM
(select Uuid,ci_no,lst_upd_ts,ROW_NUMBER() OVER(PARTITION BY Uuid order by ci_no) rn from ics.memactivities where uuid is not null)b
where a.Uuid=b.Uuid AND a.lst_upd_ts=b.lst_upd_ts and b.rn<>1
)

ORACLE每组只保留一条记录

标签:

原文地址:http://www.cnblogs.com/dashi/p/4466840.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!