how to find the second highest salary from emp table?
Answer Posted / abhishek kundu
SELECT MAX(SALARY) FROM EMP
WHERE SALARY<(SELECT MAX(SALARY) FROM EXP);
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
how would you enter characters as hex numbers? : Sql dba
How do I edit a stored procedure?
How does postgresql compare to oracle/db2/ms sql server/informix?
What is rowid in sql?
Explain the difference between triggers and constraints?
What are the different types of database management systems?
How many triggers can be applied on a table?
Why do we use partitions in sql?
how can we transpose a table using sql (changing rows to column or vice-versa) ? : Sql dba
What is procedure and function?
Explain aggregate functions are available there in sql?
Is record in oracle pl sql?
What does seeding a database mean?
Are there any features that are decommissioned in 11g that are not present in 11g?
what does the t-sql command ident_current does? : Transact sql