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 Posted / 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 |
Post New Answer View All Answers
What are the execution control statements in oracle?
What are the different oracle database objects?
what is normalisation?what are its uses?
What is an oracle table?
What are the differences between interval year to month and interval day to second?
What is a tns service name?
What is a initialization parameter file in oracle?
What is data block in Oracle?
Explain the function of optimizer in oracle?
What is Java Pool in Oracle?
What is a sub query? Describe its types?
What are the various constraints used in oracle?
What is oracle database 10g express edition?
What is a subquery in oracle?
How to create a new user account in oracle?