how to find the second highest salary from emp table?
Answer Posted / ankit khanijau
Select salary from emp
where MAX(Select salary from emp where salary != MAX(salary))
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
Explain ttitle and btitle.
What is foreign key and example?
How many triggers can be applied to a table?
What are the two parts of design view?
How do you bind variables in pl sql?
What language is oracle sql developer?
how many ways to get the current time? : Sql dba
Explain the difference in execution of triggers and stored procedures?
What is cursor and why it is required?
how to use case expression? : Sql dba
How do I know if I have sql express or standard?
Does sql use python?
How is sql used in oracle?
What are the key differences between SQL and PL SQL?
Write a program that shows the usage of while loop to calculate the average of user entered numbers and entry of more numbers are stopped by entering number 0?