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 we create SQL Server 2005 Reporting Services ? Give me Sample
What is join and name different type of joins?
How to end a stored procedure properly in ms sql server?
What is an sql server agent?
What are the advantages of partitioning?
How can we remove orphan records from a table?
How will you optimize a stored procedure optimization?
What are the five characteristics of good data?
Explain can SSRS reports Cache results?
Can a stored procedure call itself or a recursive stored procedure? How many levels of sp nesting is possible?
You schedule a job to run every minute what will happen if the first job runs more than 1 min? Will the second instance of the job start?
What are number line correlation administrators will use while working with a subquery?
What is table value parameters (tvp)?
How to make a remote connection in a database?
Why use view instead of a table?