how to find the second highest salary from emp table?
Answer Posted / anantkreshna v
select max(sal) from emp_table where sal < (select max(sal)
from emp_table);
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is output spooling in sql*plus?
What is the difference between count 1 and count (*) in a sql query?
What is the difference between cluster and non-cluster index?
What is the usage of the distinct keyword?
What is exit statement?
What are the limitations of sql express?
Can we call stored procedure in function?
explain commit and rollback in mysql : sql dba
Is primary key is clustered index?
Explain ddl statements in pl/sql?
Which is better join or inner query?
What is sql injection owasp?
what are the different tables present in mysql? : Sql dba
Why sql query is slow?
Is not null in sql?