What is the Query to print out the individual total number of
duplicate row in sql.
Answer Posted / vivek ghorad
SELECT * FROM emp WHERE ROWID NOT IN(SELECT MIN(ROWID)FROM
emp GROUP BY empno,fname,dept);
| Is This Answer Correct ? | 3 Yes | 6 No |
Post New Answer View All Answers
Is sqlite free?
What are pl/sql packages?
what are the nonstandard string types? : Sql dba
what is the difference between $message and $$message? : Sql dba
How to change sql*plus system settings?
What does select top 1 do in sql?
What is implicit cursor in pl sql?
Why is partition used in sql?
what is innodb? : Sql dba
What version is sql?
What is pl sql package?
How is a process of pl/sql compiled?
What's the procedure?
what is the difference between delete and truncate statement in sql? : Sql dba
Can we rollback after truncate?