5. Display full details for the creditor/s who has received
the single largest payment. Do not use a table join or set
operator anywhere in your query.
Answer Posted / ajit
select *
from ( select sal from emp order by sal desc)
where rownum <= 1
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is oracle datasource?
What is a proxy object?
How do I connect to oracle database?
Explain how you would restore a database using RMAN to Point in Time?
What is format trigger?
What do the 9i dbms_standard.sql_txt() and dbms_standard.sql_text() procedures do?
What is a directory object?
How do you find out from the RMAN catalog if a particular archive log has been backed-up?
How to connect the oracle server as sysdba?
What happens in oracle commit?
Is there an oracle sql query that aggregates multiple rows into one row?
What is the sid in oracle?
How index is implemented in oracle database?
How to define an explicit cursor in oracle?
How to pass parameters to procedures?