Write a query to get all details of employee who has maximum
salary from employee table

Answer Posted / vineet

Select * from EMP_TAB where salary = (select max(salary) from EMP_TAB;

Is This Answer Correct ?    8 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How can you find out which stored procedures are recompiling?

508


What is the difference between DataRow.Delete() and DataRow.Remove()?

714


Can a stored procedure call itself or recursive stored procedure? How many levels sp nesting is possible?

515


What is the most common trace flags used with sql server?

506


What are the new features introduced in SQL Server 2000? What changed between the previous version of SQL Server and the current version?

1844






what are the steps you will take, if you are tasked with securing an sql server? : Sql server database administration

549


what method you can use to reduce the overhead of Reporting Services data sources?

147


as a general practice, it is recommended to have dbo be the owner of all database objects however, in your database you find number of tables owned by a user other than dbo, how could you fix this? : Sql server administration

530


Define inner join in sql server joins?

529


Explain the dirty pages?

566


List layers of abstraction microsoft architectured to provide relational db through cloud platform ?

161


What is clustered vs nonclustered index?

503


What is SQL Azure?

85


List the different normalization forms?

530


How to trouble shoot if unable to connect SQL Server

1478