write a query for the fifth highest salary?
Answers were Sorted based on User's Feedback
Answer / arshi
SELECT MAX(Salary) AS Expr1
FROM TableName
WHERE (Salary NOT IN
(SELECT TOP (4) MAX(Salary)
AS Expr1
FROM TableName AS
TableName_1
GROUP BY Salary
ORDER BY SalaryDESC))
| Is This Answer Correct ? | 6 Yes | 7 No |
Answer / ramesh
select top 1 salary
(select distinct top 5
salary from employees
order by salary desc)
a order by salary
| Is This Answer Correct ? | 6 Yes | 9 No |
Answer / sujit
Hop it helps!
Select sal from (select sal from emp order by sal desc
where rownum<6);
| Is This Answer Correct ? | 0 Yes | 3 No |
Answer / payal
select salary from emp order by salary desc limit 4,1
| Is This Answer Correct ? | 3 Yes | 10 No |
Answer / aravind
select * from (select sal from emp order by desc) emp where
rownum = 5
| Is This Answer Correct ? | 6 Yes | 14 No |
Answer / p.chella vijaya
select top 5 (salary) from emp order by desc
| Is This Answer Correct ? | 1 Yes | 13 No |
Answer / p.chella vijaya
select top 5 (salary) from emp order by salary desc
| Is This Answer Correct ? | 1 Yes | 14 No |
Difference between sql and mysql?
Source File: Target EMPNO, SAL Empno, Format 101, 1000 101, 1000 101, 1100 101, 1000, 1100 101, 1000 101, 1000, 1100, 1000 101, 10000 101, 1000, 1100, 1000, 10000 102, 1100 102, 1100 102, 1300 102, 1100, 1300 102, 1200 102, 1100, 1300, 1200 102, 1500 102, 1100, 1300, 1200, 1500 How can i get that output using datastage(ETL) tool
issues involved in modeling and building data werahouses
What are the three types of anomalies in database and Explain?
Which three commands cause a transaction to end?
What is the default identifier of structure in C?
Does aggregate and fact tables gets populated from transactional data with only diffrence in there granularity? Please clarify?
Is database a hardware or software?
What is the relationship that exists inside in E-R diagram?
Which is the best graph database?
a __________ is a virtual table made up of subset of actual table
Please post the scenerois for writing the complex sql queries , for my practice.Can be any query if you cannot solve.
Oracle (3253)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)