How to retrieve Duplicate Rows only in a Table?
Suppose if a Table Name is "Education". It consists of
multiple columns. Then if we insert rows into this table
with duplicate records then how can we retrieve only
duplicate records from that table?
Answer Posted / mohan
select count(*),column_name from table_name group by
column_name having count(*)>1
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What is cursor and why it is required?
Are subqueries better than joins?
What are the steps for performance tuning.
What does rownum mean in sql?
is it possible to pass an object or table to a procedure as an argument?
How to install oracle sql developer?
What is dba in sql? : SQL DBA
What are tables in sql?
how to drop an existing table in mysql? : Sql dba
What is sql partition?
What is thread join () in threading?
What are the different types of triggers?
What is difference between inner join and self join?
How bulk collect improves performance?
Can we want to pass a parameter payroll_id to this external pl/sql function, how do we do it?