write query for fourth maximum salary from employee table
Answer Posted / anish tuladhar
select
distinct salary
from
(
select
DENSE_RANK() over(order by salary desc) as rnk,
modelyr_id_int
from
employee
) a
where
rnk = 4
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
What do you think of this implementation? Can this be implemented better?
What is subquery in sql?
How much memory that we are using in Logshipping Concept?
role of sql sever 2005 in database rather than any other database
What is oltp (online transaction processing)?
What is a system database and what is a user database?
What is explicit mode in sql server?
What are the commands used in DCL?
How to connect of datebase with sql express.?
Can you use order by when defining a view?
When should you use an instead of trigger?
Why does sql studio use a single registered database repository? : sql server management studio
Where actually sql azure database is hosted?
What is the difference between char and varchar2 datatype in sql?
What is the difference between TRUNCATE and DROP?