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 / 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 View All Answers
How to connect the oracle server as sysdba?
How remove data files before opening a database?
How to resolve name conflicts between variables and columns?
What is the fastest query method to fetch data from the table?
What is meant by raw datatype?
What is an Oracle Instance?
What happens in oracle commit?
What are the different types of database objects?
What is the difference between pre-select and pre-query?
What happens to the data files if a tablespace is dropped?
What is the usage of synonyms?
Why does oracle 9i treat an empty string as null?
How to lock and unlock a user account in oracle?
How do I recompile a procedure in oracle?
 How to use an oracle sequence generator in a mapping?