Answer Posted / justus
create table emp
empid empname
----- --------
101 a
102 b
103 a
104 c
105 a
select empname from emp group by empname having count(empname)>1
| Is This Answer Correct ? | 12 Yes | 2 No |
Post New Answer View All Answers
How to convert a table data in XML format in sql server?
Can you explain about buffer cash and log cache in sql server?
what is a schema in sql server 2005? Explain how to create a new schema in a database? : Sql server database administration
What do you mean by cardinality?
What are cursors in ms sql server?
How you can find out if an index is useful to the optimizer?
How to find the service pack installed? : sql server database administration
What is filtered index?
Is it possible to update the views? If yes, how, if not, why?
How would you choose between a clustered and a non-clustered index?
What is proper subset of candidate key?
How do I make a resultset scrollable?
What is difference between inner join and full join?
In case you have filters in your report, when filters will be applied in cached report instance?
Why we need to use secondry database file? though, we can do same work using primary database file also.