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
How to rebuild indexes with alter index ... Rebuild?
What is the difference between a function and a trigger?
What are binary string data types in ms sql server?
Which table keeps information about stored procedures?
How to sort the query output with order by clauses in ms sql server?
optimization techinques
What do you know about normalization and de- normalization?
How secure is sql server database?
How you would rewrite the sql query to return the customerid sorted numerically?
What is a virtual table in sql?
What do I need to start working with sql studio? : sql server management studio
Where is localdb stored?
What are the differences between substr and charindex in sql server.
What are “unrepeatable reads”?
Define msdb database?