Write a query to get 2nd maximum salary in an employee table ?
Answer Posted / pramod majhi
select max(salary) from employees where salary<(select
max(salary) from employees);
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Can we call dml statement in function?
What is pl sql architecture?
What is synonyms?
What do you mean by “trigger” in sql?
What is primary and foreign key?
What is sql server and ase?
What is the difference between inner join and natural join?
What is cte sql?
What is keys and its types?
What is embedded sql with example?
Is stored procedure faster than query?
Explain scalar functions in sql?
Why do we need cursor in pl sql?
What is nvarchar in sql?
Explain raise_application_error.