how do you count the duplicate records in a table
Answer Posted / dev
Hi,
There are many ways to do it.
One of that is ,
select count(0) from tab1 a
where a.rowid > any (select b.rowid from tab1 b where
a.col1 =b.col1);
| Is This Answer Correct ? | 6 Yes | 4 No |
Post New Answer View All Answers
how can we know the number of days between two given dates using mysql? : Sql dba
Is pl sql still used?
How many types of relationship are there?
How do I edit a trigger in sql developer?
what are different types of collation sensitivity? : Sql dba
Is it possible to Restore a Dropped Table using Rollback Command in Oracle SQL Plus ?
List and explain the different types of join clauses supported in ansi-standard sql?
how to drop an existing table in mysql? : Sql dba
What operating systems are supported by oracle sql developer?
What is difference between my sql and sql?
Is sql a dbms?
Can we use commit inside a trigger?
What is column?
What is pls integer?
Can %notfound return null after a fetch?