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

How to define a sub function?

0 Answers  


How can we create the complete backup of data in the oracle.

0 Answers   IPEC, Satyam, SunTec,


Does facebook use oracle?

0 Answers  


Explain the relationship among Database, Tablespace and Data file?

4 Answers  


Explain about functional dependency and its relation with table design?

0 Answers  






How to save query output to a local file?

0 Answers  


Can we create trigger on materialized view in oracle?

0 Answers  


What is the Extension of Oracle Database? As extension of Access Database is .mdb

2 Answers  


What are the components of Physical database structure of Oracle Database?

4 Answers  


Provide an example of a shell script which logs into SQLPLUS as SYS, determines the current date, changes the date format to include minutes & seconds, issues a drop table command, displays the date again, and finally exits.

0 Answers  


How to connect to the server with user account: sys?

0 Answers  


How to call a stored function in oracle?

0 Answers  


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)