how do you count the duplicate records in a table
Answer Posted / priya
select coloumn_name ,count(*) from table_name
group by coloumn_name
having count(*) > 1;
| Is This Answer Correct ? | 35 Yes | 0 No |
Post New Answer View All Answers
How many triggers can be applied on a table?
What is synchronized subquery?
Why select is used in sql?
What is group by in sql?
Which data type is a composite type?
Is pl sql still used?
What is pls_integer in pl sql?
what are the different index configurations a table can have? : Sql dba
Is join an inner join?
What is sql catalog?
How do you remove duplicates without using distinct in sql?
How can we make an if statement within a select statement?
What are records give examples?
What are types of indexes in sql?
What is not equal in sql?