HOW TO FIND THE EMPLOYEE DETAILS WHO ARE GETTING SAME SALARY
IN EMP TABLE
Answer Posted / 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 |
Post New Answer View All Answers
What is pivot and unpivot?
What is a db view?
What are the properties of the transaction?
What are the High-Availability solutions in SQL Server and differentiate them briefly?
What is the order by used for?
What is table level trigger?
What are the ways available in sql server to execute sql statements?
What does it mean if @@cursor_row returns a negative number?
How many levels of sp nesting are possible?
What is etl - extraction, transformation, and loading?
What are the types of processing and explain each? : sql server analysis services, ssas
What is #table in sql server?
what is package and it uses and how can u call a package
What is user-defined functions? What are the types of user-defined functions that can be created?
What is executereader?