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 / kumargvk
select * from education a where rownum>(select max(rownum)
from education b where b.rno=b.rno)
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Does pl/sql support create command?
What is a temporal table?
How to call a javascript function from pl sql?
How many disk partitions should I have?
What is raw datatype in sql?
What is %type in sql?
What is a rank in sql?
what is bdb (berkeleydb)? : Sql dba
What is a constraint? Tell me about its various levels.
Does google use sql?
What is the use of triggers?
what are the different type of normalization? : Sql dba
Explain the difference between sql and mysql.
what are the types of subquery? : Sql dba
What is primary and foreign key?