how to find the second highest salary from emp table?
Answer Posted / em rao
select max(sal)
from emp
where sal<
(select max(sal)
from emp;)
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
Can you upgrade sql express to full sql?
Is drop table faster than truncate?
how to run 'mysql' commands from a batch file? : Sql dba
Is primary key clustered or nonclustered?
What is the difference between a database and a relational database?
Can we use join in subquery?
How do I view output in sql developer?
What is substitution variable?
Which join is like inner join?
How do you define a foreign key?
what is a constraint? Tell me about its various levels. : Sql dba
Is sql a microsoft product?
Explain what is a column in a table?
How do I count rows in sql?
What is data control language?