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

Oracle查询重复字段

时间:2019-05-30 17:57:07      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:重复   select   acl   sof   sele   font   ros   字段   where   

查询某个字段有重复的数据:

  select org_id from oa_food_yy group by org_id having count(*)>1

查询某些字段有重复的数据:

  select org_id,food_id from oa_food_yy group by org_id,food_id having count(*)>1

  select * from oa_food_yy where (org_id,food_id) in (select org_id,food_id from oa_food_yy group by org_id,food_id having count(*)>1)

Oracle查询重复字段

标签:重复   select   acl   sof   sele   font   ros   字段   where   

原文地址:https://www.cnblogs.com/GodSince/p/10950536.html

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