how do you count the duplicate records in a table
Answer Posted / suresh a
select sum(count(col1) -1) from emp
group by col1 having count(col1) > 1
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
How do I count records in sql?
What is the use of index in sql?
What is right join in sql?
What is the meaning of disabling a trigger?
How does sql developer connect to oracle database?
Which query operators in sql is used for pattern matching?
Why is the cursor important?
What are the different schemas objects that can be created using pl/sql?
What is transaction control language (tcl)?
What is pl sql block in dbms?
explain access control lists. : Sql dba
What are the different types of triggers?
column A column b | output 10 7 | 10 5 8 | 8 7 -9 | 7 3 5 | 5 0 6 | 6 Write a sql query to print such output.
Can a foreign key have a different name?
What is the left table in sql?