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 to download oracle sql developer?
What is the syntax to add a record to a table?
What is pl sql package?
What are the two virtual tables available at the time of database trigger execution?
What are the sql commands?
What is composite data type in pl sql?
Can we create table in function?
How do you optimize a stored procedure query?
What are all the different normalization?
what is collation? : Sql dba
What is a crud api?
Can we commit inside a trigger?
What are triggers and its uses?
What is offset and limit in sql?
Explian rowid, rownum?