how to find the second highest salary from emp table?
Answer Posted / surendra sharma
select min(sal) from table_name where sal in
(SELECT top 2 sal FROM table_name order by sal desc)
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are the basic sql commands?
Does sql*plus have a pl/sql engine?
What are the properties of a transaction?
Why we use pl sql?
What's the procedure?
How to rename a table?
How many types of relationship are there?
Is sql dba a good career? : SQL DBA
what is heap table? : Sql dba
explain normalization concept? : Sql dba
Does sql view stored data?
what is row? : Sql dba
Are stored procedures compiled?
Can procedure in package be overloaded?
what is an index? : Sql dba