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 / dawood
SELECT COUNT(EMPNO),ENAME FROM EDUCTION
GROUP BY ENAME;
| Is This Answer Correct ? | 5 Yes | 10 No |
Post New Answer View All Answers
How can we optimize a sql query?
What is dbo in sql?
What is data type in database?
How can you load multi line records? : aql loader
What types of commands can be executed in sql*plus?
Can a composite key be null?
What is the maximum size of sqlite database?
when is the use of update_statistics command? : Sql dba
What is input buffer in sql*plus?
What are the types of keys?
What kind of join is join?
What are triggers and its types?
Which is better stored procedure or query?
What is the use of sqlerrd 3?
What does select count (*) mean in sql?