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
Explain about functional dependency and its relation with table design?
Explain a synonym?
what is the difference between restoring and recovering?
What are the major difference between truncate and delete?
Where do we use decode and case statements?
Explain an index segment?
Why is oracle used?
An automatic job running via DBMS_JOB has failedKnowing only that its failed, how do you approach troubleshooting this issue?
Explain the use of tables option in exp command.
how may join possible between (requisition with purchase order)
Why does for update in oracle 8 cause an ora-01002 error?
How to add a new column to an existing table in oracle?
What is a dynamic performance view in oracle?
What are the predefined tablespaces in a database?
How to use select statement to count the number of rows in oracle?