how to find the fifth highest salary?
Answer Posted / srinu
SELECT MIN(SAL) FROM(SELECT TOP 5 * FROM EMP ORDER BY SAL
DESC) AS MIN_SAL
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
What is an Extension of entity type?
What is the job of the information stored in data-dictionary?
What is RDBMS KERNEL?
What is "transparent DBMS"?
What is DDL (Data Definition Language)?
What does n tier mean?
What are the three levels of database architecture?
What is 2 tier 3 tier architecture?
What is Relational Algebra?
What is the difference between stored procedures and stored functions in oracle?
What is Lossless join property?
What is master database? : sql server architect
What is 4NF?
What is a view? How it is related to data independence?
What is n tier architecture with example?