I have table-A(1,2,3,4,4,5,6,6,6,7).
how to get all duplicate values?what is sql query?

Answers were Sorted based on User's Feedback



I have table-A(1,2,3,4,4,5,6,6,6,7). how to get all duplicate values?what is sql query?..

Answer / vikas

select *
from a
where rowid not in (select min(rowid) from a group by no)

no is column in table a;

Is This Answer Correct ?    10 Yes 2 No

I have table-A(1,2,3,4,4,5,6,6,6,7). how to get all duplicate values?what is sql query?..

Answer / sudipta santra

select * from A group by no having count(*)>1 ;

Is This Answer Correct ?    7 Yes 3 No

I have table-A(1,2,3,4,4,5,6,6,6,7). how to get all duplicate values?what is sql query?..

Answer / sam

SELECT num,
COUNT(num) AS NumOccurrences
FROM A
GROUP BY num
HAVING ( COUNT(num) > 1 )

Is This Answer Correct ?    3 Yes 0 No

I have table-A(1,2,3,4,4,5,6,6,6,7). how to get all duplicate values?what is sql query?..

Answer / nathan

SELECT sal,rn
FROM (SELECT ROW_NUMBER () OVER (PARTITION BY sal ORDER BY
empno DESC) rn,
sal
FROM emp)
WHERE rn > 1;

Is This Answer Correct ?    0 Yes 0 No

I have table-A(1,2,3,4,4,5,6,6,6,7). how to get all duplicate values?what is sql query?..

Answer / a.brahmam

delete from table name
where rowid not in(select max(rowid) from table name group by column name)

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Oracle General Interview Questions

Difference between varchar and varchar2 data types?

0 Answers  


I have two tables : COuntry,city I want all the cities in each country.Question on Cross Join.

3 Answers   Microsoft,


What is primefaces used for?

0 Answers  


How to create a new table by selecting rows from another table?

0 Answers  


How translate command is different from replace?

0 Answers  






how to find the n'th highest salary from emp ?

10 Answers  


What are the advantages of Views ?

3 Answers  


What is a nested table and how is it different from a normal table?

0 Answers  


What types of joins are used in writing subqueries?

0 Answers  


How to turn on or off recycle bin for the instance?

0 Answers  


What are the components of Logical database structure of ORACLE database?

4 Answers  


What is DTS and purpose of DTS ?

1 Answers   TCS,


Categories
  • Oracle General Interview Questions Oracle General (1789)
  • Oracle DBA (Database Administration) Interview Questions Oracle DBA (Database Administration) (261)
  • Oracle Call Interface (OCI) Interview Questions Oracle Call Interface (OCI) (10)
  • Oracle Architecture Interview Questions Oracle Architecture (90)
  • Oracle Security Interview Questions Oracle Security (38)
  • Oracle Forms Reports Interview Questions Oracle Forms Reports (510)
  • Oracle Data Integrator (ODI) Interview Questions Oracle Data Integrator (ODI) (120)
  • Oracle ETL Interview Questions Oracle ETL (15)
  • Oracle RAC Interview Questions Oracle RAC (93)
  • Oracle D2K Interview Questions Oracle D2K (72)
  • Oracle AllOther Interview Questions Oracle AllOther (241)