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.
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / chinna_g
You have 'emp' table with empid,empname,empsal.
With values:
1 row:1,'hhh',10000
2 row:2,'nnn',10000
3 row:3,'vvv',15000
4 row:4,'jjj',10000
A)
In this table you have sal column 10000 repeating 3 times
in the table, if you want to retrieve the repeated values
i.e. the salary column with 3 times to be displayed in the
following query:
"select empsal from emp where empsal in(select empsal from
emp group by empsal having count(empsal)>1);"
| Is This Answer Correct ? | 9 Yes | 1 No |
Answer / v rajkumar
select Emp_Id from Employee group by Emp_Id having count(*)
>1
| Is This Answer Correct ? | 1 Yes | 0 No |
In which year relase the 7.0& 2000 & 2005?
write the query for find the top 2 highest salary in sql server
36 Answers Cranes, Jayanti Software, Medi Assist, Rmax, TCS,
What is 1nf 2nf and 3nf?
Why we need sql server?
What is the purpose of self join?
What is the difference between getdate and sysdatetime?
What are the advantages of using stored procedures?
How many types of cursors are there in SQL Server?
5 Answers 247Customer, CarrizalSoft Technologies,
What is difference between view and materialized view?
How do we get month name in SQL Server 2000, Oracle, MS Access?
What is the best way to move n number of DTS package from one SQLServer to another SQLServer?
What is difference between count (*) and count 1?
Oracle (3259)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)