how to find the second highest salary from emp table?
Answer Posted / anurag kumar rai
select max(sal) from employee where sal<(select max(sal) from employee)
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is the use of triggers?
Is primary key is clustered index?
How do I order by ascending in sql?
What are sql data types?
What is rownum and rowid?
How to use sql statements in pl/sql?
What is the difference between stored procedure and view?
What is difference between sql function and stored procedure?
What is optimistic concurrency control? : Transact sql
What is composite data type in pl sql?
what is a cursor? : Sql dba
Can we rollback after truncate?
What is dense_rank in sql?
can sql servers linked to other servers like oracle? : Sql dba
How do you update sql?