how do you count the duplicate records in a table
Answer Posted / purushotham
select column,count(1) from a
group by column
having count(1)>1;
| Is This Answer Correct ? | 7 Yes | 1 No |
Post New Answer View All Answers
What is loop in pl sql?
what is the difference between sql and t-sql? : Transact sql
What are the most important ddl statements in sql?
What is sqlerrd?
what are the differences between char and varchar? : Sql dba
what is csv? : Sql dba
What is prepared statement in sql?
What is indexing in sql and its types?
what is acid property in database? : Sql dba
what are all the common sql function? : Sql dba
Can I join the same table twice?
how to increment dates by 1 in mysql? : Sql dba
describe transaction-safe table types in mysql : sql dba
how to enter binary numbers in sql statements? : Sql dba
What are local and global Indexes and where they are useful.