how to get second highest salary in SQL(as/4000
Answer Posted / sachin
select max(sal) from employees
where salary < (select max(sal) from employees);
| Is This Answer Correct ? | 19 Yes | 3 No |
Post New Answer View All Answers
Does oracle roll back the transaction on an error?
What is the difference between Union and Union all. Which is faster.
Explain polymorphism in pl/sql.
How to add a column ‘salary’ to a table employee_details?
What is serial sql?
What is database migration?
What is a parameter query?
explain the advantages and disadvantages of stored procedure? : Sql dba
What is data definition language?
What is the difference between the repeatable read and serializable isolation levels? : Transact sql
What is where clause in sql?
define sql delete statement ? : Sql dba
What are schema-level triggers?
What is meant by temporal data?
What is difference between stored procedure and trigger?