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 is isolation levels?
Do you know what is lock escalation?
What is the query and subquery?
when you create a database how is it stored? : Sql server database administration
Can you change the data type of a column in a table after the table has been created? If so, which command would you use?
Can group by and orderby be used together?
Explain what stored procedure sp_replcounters is used for? : sql server replication
 Explain what is sql override for a source taLle in a mapping?
What is sql server transaction log file?
what is a join and explain different types of joins? : Sql server database administration
How do I connect to sql server database?
What is correlated subquery in sql server?
What is an inner join?
What is the optimal disk configuration for a database server and what raid configurations would you use if budget is not a constraint?
What is NOT NULL Constraint in sql server 2012?