how to find the second highest salary from emp table?
Answer Posted / ramu
selectename,sal from (select ename,sal from emp order by sal
desc) where rownum<=5;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Why do we create views in sql?
How do I run a sql query in pgadmin 4?
What is the main reason behind using an index?
What do you mean by rowid?
Is sql port 1433 encrypted?
What is the primary use of normalization?
What is field delimiter?
What is lookup table in sql?
What is a table partition?
Under what condition it is possible to have a page level lock and row lock at the same time for a query? : Transact sql
Does truncate release storage space?
What is the most important ddl statements in sql are?
What is difference between db2 and sql?
What are sql*plus environment variables?
Which sql statement is used to delete data from a database?