免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2646 | 回复: 1
打印 上一主题 下一主题

求助:oracle删除表内部分数据问题,在线等 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-10-18 17:16 |只看该作者 |倒序浏览
问题描述:数据库里有一张表save_data,表结构userid,token,time字段。现在我想将该表内token不为空且值相同的多条记录删除只剩一条,保留的这一条记录是token值相同且time最大的(即以token值相同的记录为一组,一组记录中只保留time最大的这条,其他的都删除)。删除前需要将token字段不为空且相同的记录保持到一个文件里,删除后,需要将删除的记录到另一个文件里,怎么实现?求高人指点,在线等,先谢谢啦

论坛徽章:
0
2 [报告]
发表于 2011-10-19 11:31 |只看该作者
create or replace trigger tri_users
before delete
ON users
FOR EACH ROW
DECLARE
  PRAGMA AUTONOMOUS_TRANSACTION;
BEGIN
  insert into userrr_copy
    select distinct aa.userid, aa.token, aa.o_time
      from users aa
     where exists (select 1
              from users b
             where aa.userid = b.userid
               and aa.token = b.token
               and aa.token is not null having count(*) > 1)
       and not exists (select 1
              from userrr_copy c
             where c.userid = aa.userid
               and c.token = aa.token
               and c.o_time = aa.o_time);
  commit;
  insert into userr_copy values (ld.userid, ld.token, ld.o_time);
  commit;
END;
-----------可以参考下
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP