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
List out the differences between the clustered index and non-clustered index in sql server?
Explain how you can deploy an SSRS report?
Explain unique key in sql server?
Is the log file is a part of file group?
What is difference between stored procedure and user defined function?
what are the different types of replication you can set up in sql server? : Sql server database administration
How can you append an identity column to a temporary table?
How to Insert multiple rows with a single insert statement?
What are the five major components of a dbms?
Define union, union all, minus, intersect?
How to return the date part only from a sql server datetime datatype?
What is tablesample?
Which trace flags are enabled in sql server?
What is rank function?
What is 2nf normalization?