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 are all the different types of indexes?
what is msql? : Sql dba
What is package in pl sql with an examples?
Why do we use procedures in sql?
What are the properties of a transaction?
What are the different type of joins in sql?
how to rename an existing column in a table? : Sql dba
what is schema? : Sql dba
How much ram can sql express use?
What is data profiling in sql?
What does a pl/sql package consist of?
What is the advantage of index in sql?
Explain the insert into statements in sql?
Explain what is an index?
Is left join faster than inner join?