how to retrieve only duplicate values in a table

Answer Posted / suresh babu

select
id,
name
from
(select
id,
name
from
find_dup
group by
id,
name
having
count(*) > 1);

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

how many sql dml commands are supported by 'mysql'? : Sql dba

797


What does the argument [or replace] do?

811


What is null in pl/sql?

817


How global cursor can be declare with dynamic trigger ?

1951


Can we debug stored procedure?

725


What is exception? What are the types of exceptions?

798


Is sql better than excel?

711


How do you determine the current isolation level? : Transact sql

757


what are the t string functions available in tsql? : Transact sql

744


How to rename a table?

770


Can we insert in view in sql?

784


Which one is better subquery or joins?

782


What are the properties of a transaction?

808


Can you have a foreign key without a primary key?

687


Can we use pl sql in sql server?

746