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
Can a table have no primary key?
What is full join in sql?
What is difference between stored function and application function?
Explian rowid, rownum? What are the psoducolumns we have?
What is sql data?
Can we use commit inside a trigger?
Is pl sql a scripting language?
Is left join faster than inner join?
how to shutdown mysql server? : Sql dba
What is the difference among union, minus and intersect?
Can we debug stored procedure?
What does where 1 1 mean in sql?
Why do we use procedures in sql?
How do you update sql?
Does truncate release storage space?