What is the Query to print out the individual total number of
duplicate row in sql.
Answer Posted / ashish bakal
select count(deptno), deptno from emp where rowid not in
(select min(rowid) from emp group by deptno) group by
deptno;
| Is This Answer Correct ? | 0 Yes | 3 No |
Post New Answer View All Answers
When is the update_statistics command used?
Can we call stored procedure in function?
What are the features of pl sql?
What is using in sql?
What is vector point function?
In what condition is it good to disable a trigger?
What are the different sql commands?
What is before trigger?
What is difference between sql and excel?
What is difference between procedure and trigger?
What if we write return in procedure?
Which one is better sql or oracle?
What is out parameter used for eventhough return statement can also be used in pl/sql?
How can you know that statistics should be updated?
What are primary key and foreign key and how they work?