欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Oracle查询表中字段里数据是否有重复的方法

程序员文章站 2022-08-05 20:23:51
1、查找单个字段 select 字段名,count(*) from table group by 字段名 having count(*) > 1 2、查找组合字段: select te...

1、查找单个字段

select 字段名,count(*) from table group by 字段名 having count(*) > 1

2、查找组合字段:

select test_name1,test_name2,count(*) from table group by test_name1,test_name2 having count(*) > 1