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 is the disadvantage of User defind function?
Name the three major set of files on disk that compose a database in Oracle?
How to return top 5 rows in oracle?
Why packages are used in oracle?
How to omit columns with default values in insert statement in oracle?
How would you configure your networking files to connect to a database by the name of DSS which resides in domain icallinc.com?
Please explain joins in oracle?
Why cursor variables are easier to use than cursors?
How to convert a date to char in oracle? Give one example.
What is oracle database client?
Does oracle partitioning improve performance?
How do I know if oracle client is installed on windows?
What is a Garbage Collection? and what is full recursive Garbage collection?
what is the dual table in oracle?
What is meant by recursive hints in oracle?