how to find the second highest salary from emp table?
Answer Posted / prashanth
select max(sal) from employee where sal<(select max(sal)
from employee)
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is sql lookup?
Can I join the same table twice?
Is sqlite good enough for production?
Does oracle roll back the transaction on an error?
Can we insert in sql function?
What do you mean by field in sql?
what are the differences between binary and varbinary? : Sql dba
What port does sql server use?
what is rdbms? : Sql dba
If i can use sys.check_constraints to display my constraints from my database using sql server 2005, how can i display then if i am using sql server 2000????
Compare sql & pl/sql
How does a self join work?
does sql support programming? : Sql dba
In what condition is it good to disable a trigger?
What are the qualities of 2nf?