HOW TO FIND THE EMPLOYEE DETAILS WHO ARE GETTING SAME SALARY
IN EMP TABLE
Answers were Sorted based on User's Feedback
Answer / sunil
SELECT * FROM EMP WHERE (SAL IN (SELECT sal
FROM emp GROUP BY sal HAVING COUNT(sal) > 1))
| Is This Answer Correct ? | 72 Yes | 16 No |
Answer / vinay singh
Select * From Employee
Where Salary in
(Select Salary From Employee Group by Salary Having
Count(Salary ) > 1)
**Vinay Singh
**9867774724
| Is This Answer Correct ? | 45 Yes | 5 No |
Answer / aashish mangal
select A.id,A.salary from employee A inner join employee B
on A.salary = B.salary and A.id <> b.id
| Is This Answer Correct ? | 17 Yes | 3 No |
Answer / subbu
Query Output is :
SQL> select *from emp where sal=any( select sal from emp
group by sal having count(sal)>1);
EMPNO ENAME JOB MGR HIREDATE
SAL COMM DEPTNO
---------- ---------- --------- ---------- --------- -------
--- ---------- ----------
7521 WARD SALESMAN 7698 22-FEB-81
1250 500 30
7654 MARTIN SALESMAN 7698 28-SEP-81
1250 1400 30
7788 SCOTT ANALYST 7566 19-APR-87
3000 20
7902 FORD ANALYST 7566 03-DEC-81
3000 20
| Is This Answer Correct ? | 16 Yes | 4 No |
Answer / vidyalakshmi.s
select * from emp1 where salary in (select salary from emp1
group by salary having count(salary) >1)
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / raghuvir
Select *from Emp_table where salary=20000
will display all the employees who have salary 20000
| Is This Answer Correct ? | 30 Yes | 26 No |
Answer / dilip
SELECT * FROM EMP WHERE (SAL = (SELECT sal
FROM emp GROUP BY sal HAVING COUNT(sal) > 1))
| Is This Answer Correct ? | 28 Yes | 24 No |
Answer / gangi naidu.k
select * from emp where emp=(select sal from emp group by
sal having count(sal)>1)
| Is This Answer Correct ? | 6 Yes | 2 No |
Answer / antony
select distinct A.id,A.salary from employee A,employee B
where A.salary = B.salary and A.id <> b.id;
| Is This Answer Correct ? | 6 Yes | 3 No |
Define primary key?
How to fetch the next row from a cursor with a "fetch" statement?
Explain what are the restrictions while creating batches in sql server?
Explain datetimeoffset data type in sal server 2008?
you have couple of stored procedures that depend on a table you dropped the table and recreated it what do you have to do to reestablish those stored procedure dependencies?
How do we upgrade from SQL Server 6.5 to 7.0 and 7.0 to 2000?
what is the basic diffrence betn a col declared in char(1) and in varchar(1)
How to use union to merge outputs from two queries together in ms sql server?
please bar with my english i having a database called tblhallreservation in which res_date is date field has to select all the fields in table deponding on month either has to display all details for the month jan or feb and so on
What are the disadvantages of using the stored procedures?
What will be the value of @@fetch_status if a row that was a part of the cursor resultset has been deleted from the database after the time the stored procedure that opened the cursor was executed?
What is de-normalization and what are some of the examples of it?
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)