how to find the second highest salary from emp table?
Answer Posted / subrat
SELECT MAX(Sal) FROM EMP WHERE Sal < (SELECT MAX(Sal) FROM EMP)
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
how to enter numeric values as hex numbers? : Sql dba
What is string join?
how to use myisamchk to check or repair myisam tables? : Sql dba
Are subqueries faster than joins?
Is primary key a clustered index?
What are secondary keys?
Can instead of triggers be used to fire once for each statement on a view?
What is the maximum number of rows in sql table?
How much ram can sql express use?
What is the use of index in hive?
Is progress software supports to ( pl/sql )?
What is right join sql?
Does inner join return duplicate rows?
what are numeric data types? : Sql dba
Is it possible to include an insert statement on the same table to which the trigger is assigned?