How to count the number of duplicate items in a table?
Answers were Sorted based on User's Feedback
Answer / mr.abdul rahim
select count(column), column from table group by column
having count(column) > 1
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / pavan
Hi,
try this query.In this query sal one val is duplicated
4items
select sal,count(sal) from test group by sal having count
(*)>1
| Is This Answer Correct ? | 4 Yes | 4 No |
Answer / lalit goyal
select count(*) from (select boss_ID,COUNT(boss_ID) as s from dbo.Employee group by boss_ID ) a where s>1
| Is This Answer Correct ? | 0 Yes | 0 No |
How to test subquery results with the exists operator?
What is the difference between a function and a stored procedure?
what is package configuration variable?How to change file name in folder dynamically?Plz help me
How to optimize stored procedures in sql server?
What is the latest version of microsoft sql server?
What are the database objects? : SQL Server Architecture
How do indexes help, types?
How to make remote connection in database?
What is a rollup clause?
What is create command?
What is a functions and types in sql server?
how do u do Performance tunning ?
1 Answers Infodat Technologies, Satyam,
Oracle (3259)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)