Write a query to find second highest salary of an employee.
Answer Posted / vamana murthy
select ename,salary from emp
where rownum=2
order by salary desc
| Is This Answer Correct ? | 0 Yes | 7 No |
Post New Answer View All Answers
What are the most important ddl statements in sql?
What is the order of sql select?
what is self join and what is the requirement of self join? : Sql dba
How to set up sql*plus output format in oracle?
What is the starting oracle error number?
What are commit, rollback, and savepoint?
Can we create foreign key without primary key?
column A column b | output 10 7 | 10 5 8 | 8 7 -9 | 7 3 5 | 5 0 6 | 6 Write a sql query to print such output.
what is oracle database ? : Sql dba
What is the best sql course?
Which is better cte or subquery?
What is a table in a database?
What is data control language?
Can sql function call stored procedure?
what are set operators in sql? : Sql dba