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 is triggers and stored procedures?
What is the New in SQL server 2008?
What are the two authentication modes in sql server?
What happens if an integer is too big for int date type?
Explain unique key in sql server?
explain the storage models of olap? : Sql server database administration
How to download and install microsoft sql server management studio express?
What are the authentication modes in sql server? How can it be changed?
What is ms sql server index?
What is 3nf normalization form?
Define outer join in sql server joins?
What new changes are being made in SQL Server?
What is equi join with example?
What is 1nf normalization form?
Which is better statement or preparedstatement?