select A.* from tb_mend_enrol A,
                (select A.Typeid, A.address from tb_mend_enrol A
                  group by A.Typeid, A.address
                  having count(A.Typeid) >= 2 and count(A.address) >= 2 ) B
where A.Typeid = B.Typeid  and A.address = B.address and a.reporter='测试' 
and A.reptime >= to_date('2018-08-01 00:00:00','YYYY-MM-DD HH24:MI:SS')
order by A.Address, A.reptime


方法二:

select A.* from tb_mend_enrol A
where (select count(*) from tb_mend_enrol A1
where A1.Typeid = A.Typeid and A1.address=A.address)>1
and a.reporter='测试'
and A.reptime >= to_date('2018-08-01 00:00:00','YYYY-MM-DD HH24:MI:SS'
order by A.Address

  

内容来源于网络如有侵权请私信删除

文章来源: 博客园

原文链接: https://www.cnblogs.com/wmxblog/p/11936698.html

你还没有登录,请先登录注册
  • 还没有人评论,欢迎说说您的想法!