how to find the second highest salary in a given table????
Answer Posted / kedar
select max(salary) from employees where salary < (select
max(salary) from employees);
the max salary is 24000
& second max is 17000
chwck out
| Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
Explain compound trigger in oracle?
How many types of cluster table in Oracle?
What are the original export and import utilities?
What is a procedure in oracle?
What is the usage of save points in oracle database?
How to write numeric literals in oracle?
What is the quickest way to export a table to a flat file?
What is clustered table in Oracle?
how to use select statement as formal parameter in procedure specification?(someone said that using string) ex:-procedure(a in number,select ename from emp ) i am asking syntax like this?
Is primary key indexed by default in oracle?
I have a database backup file in .db (ext) form how to conver it into .dmp (ext.) for oracle database
What is Java Pool in Oracle?
What happens if variable names collide with table/column names?
What is meant by an index?
An automatic job running via DBMS_JOB has failedKnowing only that its failed, how do you approach troubleshooting this issue?