HOW TO FIND THE EMPLOYEE DETAILS WHO ARE GETTING SAME SALARY
IN EMP TABLE
Answer Posted / 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 |
Post New Answer View All Answers
Explain the functionalities that views support?
In which files does sql server actually store data?
what is a sub-report?
What do you mean by sql server agent?
How many databases instances are there in sql server 2000?
How optimize sql query with multiple joins in sql server?
Why it is recommended to avoid referencing a floating point column in the where clause?
Explain alternate key, candidate key and composite key in sql server?
when you create a database how is it stored? : Sql server database administration
what do you understand by change data capture?
Explain about temporary stored procedure?
Does order by actually change the order of the data in the tables or does it just change the output?
What is pivot and unpivot?
Which data types generate inaccurate results if used with an = or <> comparison in a where clause of a sql statement?
What are the differences between triggers and stored procedures?