write the query for find the top 2 highest salary in sql
server
Answer Posted / raja.p
Find The 4 Top Salary in a Company
----------------------------------
CREATE TABLE EMPLOYEE2 (NAME VARCHAR2(20), SALARY NUMBER) ;
CREATE TABLE employee2 (
name char(20),
salary float);
INSERT INTO employee2 VALUES (
'Raja',
10000);
INSERT INTO employee2 VALUES (
'Arithas',
10000);
INSERT INTO employee2 VALUES (
'Balaji',
12000);
INSERT INTO employee2 VALUES (
'Vairam',
13000);
INSERT INTO employee2 VALUES (
'Muthu Krishnan',
14000);
INSERT INTO employee2 VALUES (
'Muthu Kumar',
15000);
INSERT INTO employee2 VALUES (
'Ramesh',
9000);
select e.name,e.salary from Employee2 e where 4>(select
count(Distinct
d.salary)from employee2 d where d.salary>e.salary) order by
e.salary desc;
| Is This Answer Correct ? | 16 Yes | 8 No |
Post New Answer View All Answers
What is scd (slowly changing dimension)? : sql server analysis services, ssas
What is 2nf in normalization?
How fixed length strings are truncated and padded?
Introduction of rollup clause using sum and group by clause?
What is de-normalization and what are some of the examples of it?
What are the different sql server versions?
What are the 10 characteristics of data quality?
Why use stored procedures in sql server?
Explain the flow of creating a cube? : sql server analysis services, ssas
what is the difference between them (ethernet networks and token ring networks)? : Sql server database administration
What is truncate table?
What is cursor in ms sql server?
When would you prefer to have a minimum number of indexes?
What is 'Join' and explain its various types.
What happens if the update subquery returns no rows in ms sql server?