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 / er mahesh shiv gaur

SELECT MAX(SALARY) FROM (SELECT FIRST_NAME,SALARY,FROM EMP
ORDER BY SALARY DESC) WHERE ROWNUM<=1 GROUP BY
FIRST_NAME,SALARY;

Is This Answer Correct ?    3 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Why oracle is used?

578


How to load a large xml file?

580


Who developed oracle & when?

567


Can I create users through internet explorer in oracle 10g?

565


How to put more than 1000 values into an oracle in clause?

583






How to select some rows from a table in oracle?

596


How to see free space of each tablespace?

590


what is the use of system.effective.date variable in oracle?

671


What is transport network substrate (tns) in oracle?

585


Is there an oracle sql query that aggregates multiple rows into one row?

542


What do you mean by cdb and pdb in oracle 12c?

633


What happens to the current transaction if a ddl statement is executed?

576


What is blob data type in oracle?

555


How do I recompile a procedure in oracle?

527


Explain the types of exception?

650