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
How to rebuild the master database?
How do I run sql server 2014?
How many primary keys are possible in a table?
How do you create a clustered index?
In what version of sql server were synonyms released?
Explain comment on transactions?
What are the types of stored procedures in an sql server?
What will be the maximum number of indexes per table?
what is denormalization? : Sql server database administration
Which are the important points to note when multilanguage data is stored in a table?
Where the sql logs gets stored?
What is the chart in report?
What is subquery? Explain the properties of a subquery?
Explain about temporary stored procedure?
Do you know the cursor types?