How to Select second Maximum salary in a Table ?
Answers were Sorted based on User's Feedback
Answer / 9896012055
select * salary from table < select max(salary) from table
order by salary;
Is This Answer Correct ? | 0 Yes | 4 No |
Answer / havyas
select sal from table where rownum = 2 order by sal desc
Is This Answer Correct ? | 1 Yes | 13 No |
Explain the use of analyse option in exp command.
emp numb is unique because that is primary key,,but what is foreign key .. explain very clear with example
can we pass two out parameters at a time in function?please answer to my question
What is ASM (Automatic Storage Management) in Oracle?
What privilege is needed for a user to connect to oracle server?
How to invoke the original export import utilities?
What happens to the indexes if a table is recovered?
diff between DELETE and TRUNCATE?.
14 Answers HCL, Yalamanchili Software,
How to use "in out" parameter properly?
What is meant by raw datatype?
acname actype amount ac1 credit 300 ac2 credit 4000 ac1 debit 4000 ac2 debit 455 ac1 credit 500 how to get sum of credit and sum of debit for each account
How to retrieve data from an cursor to a record?