how to find the second highest salary from emp table?
Answer Posted / subahar
SELECT MAX(average) AS Expr1
FROM sp
WHERE (average NOT IN
(SELECT MAX(average) AS Expr1
FROM sp AS sp_1))
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are string functions in sql?
Are ddl triggers fired for ddl statements within a pl/sql code executed using the dbms.sql package?
Which operator is used in query for pattern matching?
How long does it take to learn pl sql?
What is the usage of sql functions?
What is the difference between an inner join and an outer join?
How many types of privileges are available in sql?
Which software is used for pl sql programming?
Explain the difference between sql and mysql.
when is the use of update_statistics command? : Sql dba
Is like operator in sql case sensitive?
How does left join work in sql?
Does a user_objects view have an entry for a trigger?
Explain the significance of the & and && operators in pl sql.
what are date and time data types in mysql? : Sql dba