how to find the second highest salary from emp table?
Answer Posted / bipin
use this query. it works great.
select max(sal) from table_name where sal<(select max(sal)
from table_name)
| Is This Answer Correct ? | 415 Yes | 59 No |
Post New Answer View All Answers
Explain raise_application_error.
Can we insert in sql function?
What is the current version of postgresql?
What is composite primary key in sql?
What are the types pl/sql code blocks?
what is auto increment? : Sql dba
How do I quit sql?
what are date and time data types in mysql? : Sql dba
Show the cursor attributes of pl/sql.
What is gpt format?
How many indexes can be created on a table in sql?
How many joins can you have in sql?
What is audit logout in sql profiler?
Can we use delete in merge statement?
How can I see all tables in sql?