Home > Database > Oracle > body text

How to query duplicate fields in Oracle

WBOY
Release: 2022-01-21 11:41:33
Original
7945 people have browsed it

In Oracle, you can use the count() function to query repeated fields. The syntax is "select * from table name where field in (select field from table name group by field having count (field) >1) ".

How to query duplicate fields in Oracle

The operating environment of this tutorial: Windows 10 system, Oracle 11g version, Dell G3 computer.

How to query duplicate fields in Oracle

1. Find redundant duplicate records in the table. Duplicate records are judged based on a single field (userCode)

select 
* 
from 
user
where 
userCode
in 
(select  userCode  from  user group by  userCode having count (userCode) > 1)
Copy after login

2. Delete the table Unnecessary duplicate records, duplicate records are judged based on a single field (userCode), only the record with the smallest rowid is left

delete from 
user 
where 
userCode 
in 
(select userCode from user group by  userCode having count (peopleId) > 1)
and rowid not in 
(select min(rowid) from   user group by userCode having count(userCode)>1)
Copy after login

3. Unnecessary duplicate records (multiple fields) in the lookup table

select 
* 
from 
user a
where 
(a.userCode,a.userName) 
in  
(select userCode,userName from user group by userCode,userName having count(*) > 1)
Copy after login

4. Delete the redundant duplicate records (multiple fields) in the table, leaving only the record with the smallest rowid.

delete from 
user a
where
(a.userCode,a.userName) 
in   
(select userCode,userName from user group by userCode,userName having count(*) > 1)
and rowid not in 
(select min(rowid) from user group by userCode,userName having count(*)>1)
Copy after login

5. Find the redundant duplicate records (multiple fields) in the table, excluding the record with the smallest rowid. Record

select 
* 
from 
user a
where 
(a.userCode,a.userName)  
in   
(select userCode,userName from user group by userCode,userName having count(*) > 1)
and rowid not in 
(select min(rowid) from user group by userCode,userName having count(*)>1)
Copy after login

Recommended tutorial: "Oracle Tutorial"

The above is the detailed content of How to query duplicate fields in Oracle. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!