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 / sirisha
select id,count(id) from Education group by id having count(id)>1
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Does sql view stored data?
how to decrement dates by 1 in mysql? : Sql dba
Is sql difficult?
Is mariadb nosql?
What is the use of sqldataadapter?
What are inner outer left and right joins in sql?
What is bulk collect in pl sql?
What is the difference between distinct and unique in sql?
What are the most important characteristics of pl/sql?
What are the topics in pl sql?
What is a recursive stored procedure?
What is cursor status?
What is sql integrity?
What is the sql case statement?
What is rownum and rowid?