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 / lavanya
SELECT COUNT(*), <COLUMN_NAME> FROM EDUCATION GROUP BY
<COLUMN_NAME>
| Is This Answer Correct ? | 10 Yes | 14 No |
Post New Answer View All Answers
what is the maximum length of a table name, database name, and fieldname in mysql? : Sql dba
What is bitemporal narrowing?
What is varchar used for?
Where is pl sql used?
What is write ahead logging in sql server?
How can a function retun more than one value in oracle with proper example?
What is rownum and rowid?
What is the purpose of cursors in pl/sql?
Explain mutating table error.
what is csv? : Sql dba
What are the different types of joins in sql?
What is primary key and unique key?
How do I find sql profiler?
What are sql triggers used for?
How do rank () and dense_rank () differ?