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 / "d"
select count(*),ss from dd group by
ss having count(*)>1
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Which is faster joins or subqueries?
What port does sql server use?
What does the acronym acid stand for in database management?
how many triggers are allowed in mysql table? : Sql dba
Where is pl sql used?
what is a composite key ? : Sql dba
Can we update views in sql?
Explian rowid, rownum?
Which software is used for pl sql programming?
What is the purpose of using pl/sql?
What are the different sql commands?
What are inner outer left and right joins in sql?
Can a composite key be null?
What are secondary keys?
What happens when a trigger is associated to a view?