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 Lock table in SQL?
What is partition, how will you implement it? : sql server analysis services, ssas
What is executereader?
What's the information that can be stored inside a bit column?
How to perform backup for certificates in sql server? : sql server security
Define tempdb database?
How to disable triggers using "disable trigger"?
What stored by the tempdb ? : sql server database administration
What is the purpose of sql profiler in sql server? : sql server database administration
Write a program using SQL queries to find a unique entry in a table.
What is recursion? Is it possible for a stored procedure to call itself or recursive stored procedure? How many levels of sp nesting are possible?
wat wil hapn if we give the both read and deny read permission to user?
Why can there be only one clustered index and not more than one?
Explain full-text indexing?
What is the difference between executequery () and executeupdate ()?