HOW TO FIND THE EMPLOYEE DETAILS WHO ARE GETTING SAME SALARY
IN EMP TABLE
Answers were Sorted based on User's Feedback
Answer / harish
select e1.First_name,e1.salary from emp e1,emp e2 where
e1.ROWID <> e2.ROWID and e1.salary=e2.salary;
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / vijay
select *
from emp
where (sal = (select sal from emp
group by sal
having count(sal)>1))
| Is This Answer Correct ? | 6 Yes | 6 No |
Answer / xyz
Vinay Singh, are apna naam kyun kharab kar rahe ho boss.
Sunil ki query ko modified kar ke reply karate ho.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / madhu sudhan g
select Distinct * from dbo.EMP X
INNER JOIN dbo.EMP Y ON X.salary=Y.salary
AND X.ENAME<>Y.ENAME
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / asit
Can someone answer to this. on below query where i want to find same salary in employee table,
SELECT * FROM EMPLOYEE WHERE (SAL IN (SELECT sal FROM empLOYEE GROUP BY sal HAVING COUNT(sal) > 1))
i am getting correct output.
but if i change it to 'COUNT(SAL)>=1' then it prints all the lines from the table.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sanjeev aggarwal
If there are two salaries are same in a single table then
what we do??
example:-
id salary
s1 1200
s2 1500
s3 1200
s4 1500
s5 1800
now what query we used??
| Is This Answer Correct ? | 2 Yes | 4 No |
what is normalization? Explain different levels of normalization? : Sql server database administration
What happens if null values are involved in bitwise operations?
How to connect to a sql server using odbc_connect()?
internal language used in sql server 2000?
What is recompile sql server?
What is enhanced database mirroring in sql server 2008?
What is the maximum size of a row in sql server?
What is service broker? : sql server database administration
explain what is a deadlock and what is a live lock? How will you go about resolving deadlocks? : Sql server database administration
How to delete a login name in ms sql server?
could u plz explain about joins and views?
What are the types of indexes available with SQL Server?
Oracle (3253)
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)