write a query to Find the Maximun second value in table?
Answer Posted / smriti
select salary from(select rownum r,salary from details
order by salary desc)where rownum<2 and salary<(select max
(Salary) from details)
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is an advantage of a database?
What is variable dbms?
Describe a subquery.
What is cold backup and hot backup (in case of oracle)?
Does netlib support windows 95?
Explain the terms ‘record’, ‘field’ and ‘table’ in terms of database.
Define database model.
What do database languages do?
What are the properties of a database?
What are the differences between drop, truncate and delete commands?
Explain the terms database and dbms?
What is atomicity in dbms?
What are the features of dbms?
What is the purpose of a database table?
Explain the Surrogate Key in DBMS.