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
explain databases and sql server databases architecture? : Sql server database administration
How to create a scrollable cursor with the scroll option?
What is the default Port No on which SQL Server listens?
What are the differences between triggers and stored procedures?
Tell me what is difference between view and materialized view?
How raid can influence database performance?
Disadvantages of the indexes?
Define union, union all, minus, intersect?
List the types of recovery model available in sql server?
What authentication modes does sql server support?
What is ms sql server index?
How do database indexes work?
What is openrowset sql server?
Why should we go for stored procedures? Why not direct queries?
How to bind a view to the schema of the underlying tables?