how to find out the repeated value from table using groupby
function?
Answer Posted / karthik
select eno,count(1) cnt from emp
group by eno having count(1) > 1;
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are the difference between “where” and “having” clause in sql server?
what are defaults? Is there a column to which a default can't be bound? : Sql server database administration
Explain the collation?
How and why use sql server?
difference between Clustered index and non clustered index ?
When we should use @@error?
How connect excel to sql server?
Do you know what are the differences between lost updates and uncommitted dependencies?
What is sql server programming?
What is side by side migration in sql server?
What is replication and database mirroring?
What is importing utility?
How to list all dsn entries on your local machine using odbc_data_source()?
Explain try...catch with sql server?
What is sparse columns of sql server 2008?