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
Is pl sql different from sql?
How many sql core licenses do I need?
What are different sql data types?
Which is better join or inner query?
Is ms sql traffic encrypted?
Enlist the advantages of sql.
What is sql scripting?
What is scalar function in sql?
How to execute a stored procedure?
When sql appeared?
How can get second highest salary in sql?
What is sap sql anywhere?
What are types of indexes in sql?
How do I run a program in pl sql?
how to include numeric values in sql statements? : Sql dba