HOW TO FIND THE EMPLOYEE DETAILS WHO ARE GETTING SAME SALARY
IN EMP TABLE
Answer Posted / vidyalakshmi.s
select * from emp1 where salary in (select salary from emp1
group by salary having count(salary) >1)
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
Do you know the isolation level that sql server support?
What is tcl in sql server?
What are policy management terms?
What are the new features of sql server 2012 reporting service?
What do you understand by the data quality services in sql server?
What is function of ROLLUP ?
When columns are added to existing tables, what do they initially contain?
What is efficiency data?
What is default constraint in ms sql server?
create index myindex on mytable(mycolumn) what type of index will get created after executing the above statement? : Sql server database administration
You have to store user responses of ‘yes’ and ‘no’ what kind of data type is best suited for this task?
List out the difference between union and union all in sql server?
How do you create an execution plan?
what is create database syntax? : Sql server database administration
you have developed an application which uses many stored procedures and triggers to update various tables users ocassionally get locking problems which tool is best suited to help you diagnose the problem? : Sql server administration