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
What is the current version of postgresql?
In pl/sql, what is bulk binding, and when/how would it help performance?
Can we rollback after truncate?
What type of database is cloud sql?
how to escape special characters in sql statements? : Sql dba
what are ddl statements in mysql? : Sql dba
Why function is used in sql?
what is the stuff function and how does it differ from the replace function? : Sql dba
What are inner and outer joins examples of both?
what is the different between now() and current_date()? : Sql dba
Does group by remove duplicates?
What does stand for in sql?
What is a dynamic query?
What is memory optimized?
How do you optimize a stored procedure in sql?