HOW TO FIND THE EMPLOYEE DETAILS WHO ARE GETTING SAME SALARY
IN EMP TABLE
Answer Posted / 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 |
Post New Answer View All Answers
Explain the steps to create and execute a user-defined function in the sql server?
What is scan table/view and seek table/view when its occurs? : sql server database administration
What are the elements of dbms?
What is it unwise to create wide clustered index keys?
What are points to remember while using the fillfactor argument?
What is an execution plan? When would you use it?
What is data source document?
do you know what is a deadlock and what is a live lock? How will you go about resolving deadlocks? : Sql server database administration
What is a not null constraint?
What is dirty read?
What is difference between stored procedure and user defined function?
How to use subqueries with the exists operators in ms sql server?
State the difference between local and global temporary tables?
What is checkpoint in sql server?
How to get nth highest salary from employee table.