Answer Posted / jaleel ahamed s
create table emp (empid int,empname varchar)
insert into emp values (101,'a')
insert into emp values (102,'b')
insert into emp values (103,'a')
insert into emp values (104,'c')
insert into emp values (105,'a')
select * from emp
SELECT EmpName,Count(EmpID)Cnt From Emp Group By EmpName
Having Count(EmpName) > 1
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
How to use order by with union operators in ms sql server?
What is the security model used in sql server 2005?
Define self join?
What is sql server replication? : sql server replication
What is temporal table?
how would you improve etl (extract, transform, load) throughput?
What is 2nf normalization?
What is normalization according to you and explain its different levels?
What is the difference between clustered index and primary key?
What is an inner join?
What is rtm version in sql server?
Why use identity in sql server?
What is difference between order by and group by?
How to create function without parameter in sql server?
whats the maximum size of view state??