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
What is policy management?
What is global temp table?
What are parameterized reports?
How to test values returned by a subquery with the in operator?
How to find the version of sql server? : sql server database administration
What is the current limitation of the size of SQL Azure DB?
What is identity?
How to create view in stored procedure sql server?
Which trace flags are enabled in sql server?
what are the different ways of moving data/databases between servers and databases in sql server? : Sql server database administration
How to use transact-sql statements to access the database engine?
How do I create a partition table in sql server?
Mention the different authentication modes in sql server.
Why the trigger fires multiple times in single login?
What is Cross Join and in which scenario do we use Cross Join?