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 may join possible between (requisition with purchase order)

0 Answers  


What is bulk load in oracle?

0 Answers  


What are advantages of dateset in datastage?

0 Answers   iGate,


what is foreign key?

5 Answers  


Differentiate between translate and replace?

0 Answers  






What is the quickest way to fetch the data from a table?

0 Answers  


How do you tell what your machine name is and what is its IP address?

0 Answers  


Is it possible to insert comments into sql statements return in the data model editor ?

0 Answers   Oracle,


How do you find current date and time in oracle?

0 Answers  


how to find out second largest value in the table

8 Answers  


How to create id with auto_increment on oracle?

0 Answers  


how to get required data from oracle source is like this ram_05_seetha lax_05_viswa bamr05frummy run_01_away sw_sas_trim i want my target data like ram_05_seetha lax_05_viswa to get data using %_05_% but it will give ram_05_seetha lax_05_viswa bamr05frummy how can i get my target data?

1 Answers   Infosys,


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)