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
What is a unique key and primary key and foreign key?
Does google use sql?
What is exit statement?
What is a scalar value in sql?
what is oltp (online transaction processing)? : Sql dba
Is sql difficult?
What pl/sql package consists of?
What is the difference between partition and index?
What is Histogram?
What is clustered index in sql?
What is normalization sql?
Can we declare a column having number data type and its scale is larger than pricesionex: column_name number(10,100),column_name numbaer(10,-84)
how to analyze tables with 'mysqlcheck'? : Sql dba
Explain what is sql?
What does (+) mean in sql joins?