Write a query to get all details of employee who has maximum
salary from employee table
Answer Posted / anil kumar prajapati
CREATE TABLE Employee_Test
(
Employee_ID INT,
Employee_name Varchar(100),
Employee_Salary Decimal (10,2)
);
INSERT INTO Employee_Test VALUES (1,'Anish',1000);
INSERT INTO Employee_Test VALUES (2,'Sushant',1200);
INSERT INTO Employee_Test VALUES (3,'Rakesh',1100);
INSERT INTO Employee_Test VALUES (4,'Manoj',1300);
INSERT INTO Employee_Test VALUES (5,'Amit',1400);
INSERT INTO Employee_Test VALUES (6,'Lokesh',1600);
INSERT INTO Employee_Test VALUES (7,'Maneneder',1400);
INSERT INTO Employee_Test VALUES (8,'Narendra',400);
INSERT INTO Employee_Test VALUES (9,'Kaushal',1900);
INSERT INTO Employee_Test VALUES (10,'Vikas',3400);
INSERT INTO Employee_Test VALUES (11,'Sudhir',800);
SELECT *FROM Employee_Test Emp1
WHERE ( n ) = (SELECT COUNT( DISTINCT (Emp2.Employee_Salary
) )
FROM Employee_Test Emp
WHERE Emp2.Employee_Salary >= Emp1.Employee_Salary
)
| Is This Answer Correct ? | 6 Yes | 4 No |
Post New Answer View All Answers
What are the different types of triggers in SQL SERVER?
Which are the two editions in which SQL Azure database available?
What are synonyms?
How do we know if any query is retrieving a large amount of data or very little data?
Explain view in sql server?
What are the new features in sql server 2016?
How to use the inserted and deleted pseudo tables?
Explain Capacity planning to create a database? and how to monitor it?
In which sql server version report builder introduced?
What is the difference between push and pull subscription? : sql server replication
How to declare and use cursor variables?
How to return the top 5 rows from a select query in ms sql server?
What are the different index configurations a table can have?
What command is used to rename the database?
What is command parameter in ssrs?