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
How to use "for" statements in oracle?
How would you go about verifying the network name that the local_listener is currently using?
What happens in oracle commit?
How to loop through a cursor variable?
What are the various constraints used in oracle?
Explain the blob datatype?
What are the varoius components of physical database structure of oracle database?
What is a select query statement in oracle?
How can we create the complete backup of data in the oracle.
How can you merge two tables in oracle?
How would you begin to troubleshoot an ORA-3113 error?
How to manage transaction isolation level?
What is a oracle database?
What is java oracle used for?
How to create a server parameter file?