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 / devraj
Select * From cust_data Where trxn_type = 'CR' And sal =
(Select max(sal) From cust_data) And Rownum = 1;
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
What is an oracle cursor variable?
How to put more than 1000 values into an oracle in clause?
please explain.. DB architecture ...
what is the difference between data migration and production migration.
What is varray?
Explain do view contain data?
What is oracle used for?
how to code performance tuning of oracle PL/SQL? can any body send me the perfect answer?
How to export several tables together?
How many types of auditing in Oracle?
How to check your oracle database 10g xe installation?
Explain the use of consistent option in exp command.
What is data block in Oracle?
Explain the use of rows option in imp command.
Is there any function in oracle similar like group_concat of mysql?