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 / harish
select * from education where rownum < ( select max(rownum)
from education group by <column_name> )
| Is This Answer Correct ? | 15 Yes | 24 No |
Post New Answer View All Answers
Why stored procedure is faster than query?
Is natural join same as inner join?
what is bdb (berkeleydb)? : Sql dba
What is lexical units in pl sql?
Which nosql database is best?
Can sql developer connect to db2?
Explain ttitle and btitle.
what are the authentication modes in sql server? How can it be changed? : Sql dba
Write a query to display the current date in sql?
Why do we need sharding?
Is the primary key an index?
Define concurrency control. : Transact sql
What is oracle sql developer?
What is the best sql course?
What is pl sql variable?