i want only duplicates rows from coloumn
ex. emp_id(colomn name)1,1,2,3,3,4,5,5.
so i want only duplicates no.
Answer Posted / kumar.t
Select Emp_Id, Count(Emp_Id) From Employee As Emp
Group By Emp_Id
Having Count(Emp_Id)>1
By
Kumar
| Is This Answer Correct ? | 17 Yes | 2 No |
Post New Answer View All Answers
do views contain data ?
How to convert numeric expression data types using the cast() function?
How to create a testing table with test data in ms sql server?
How to change a login name in ms sql server?
What do you understand by sql server agent?
Write down the syntax and an example for create, rename and delete index?
What is the command to change the recovery model?
Tell me what are cursors and when they are useful?
can an automatic recovery be initiated by a user? : Sql server administration
What are ddl triggers and types of ddl trigger?
Define left outer join in sql server joins?
What is create statement?
What does the update command do?
How can I track the changes or identify the latest insert-update-delete from a table?
What is the Control Flow in SSIS