How to count the number of duplicate items in a table?
Answer Posted / mr.abdul rahim
select count(column), column from table group by column
having count(column) > 1
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
How to convert binary strings into integers in ms sql server?
How to list all field names in the result set using mssql_field_name()?
What is database architecture? : SQL Server Architecture
What stored procedure can you use to display the current processes?
What is a partitioned view?
Explain how to use linked server?
How to make remote connection in database?
How can we rewrite sub-queries into simple select statements or with joins?
What is table-valued sub query?
What are the components of sql server service broker?
Where cross join is used?
You are doing log shipping due to some reasons it is failing. How you will proceed from there
Explain what is public role in sql server?
what is database replicaion? What are the different types of replication you can set up in sql server? : Sql server database administration
What happens to a statement batch if there is a compilation error?