25. Display the client number and the value of the highest
value order placed by that client.

Answers were Sorted based on User's Feedback



25. Display the client number and the value of the highest value order placed by that client...

Answer / uday shankar chejerla

select clientnum,high_value_order from ordertab where
high_value_order=(select max(high_value_order) from
ordertab);

Is This Answer Correct ?    5 Yes 0 No

25. Display the client number and the value of the highest value order placed by that client...

Answer / vijayaragavan

select clientnum, max(high_value_order) from ordertab group
by clientnum;

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More Oracle General Interview Questions

How many types of synonyms in Oracle?

0 Answers   MCN Solutions,


How to export data to a csv file?

0 Answers  


Explain a private synonyms?

0 Answers  


How to display row numbers with the records?

0 Answers  


How to find no of saturdays in a month using single sql ?

2 Answers  






Query to retrieve record for a many to many relationship ?

0 Answers   Keane India Ltd,


Explain an exception and its types?

0 Answers  


Can Multiple instances be run on Single Machine???

3 Answers  


What is program global area (pga) in oracle?

0 Answers  


How can Oracle users be audited?

0 Answers   MCN Solutions,


How to insert multiple rows with one insert statement in oracle?

0 Answers  


What is save point in oracle database?

0 Answers  


Categories
  • Oracle General Interview Questions Oracle General (1789)
  • Oracle DBA (Database Administration) Interview Questions Oracle DBA (Database Administration) (261)
  • Oracle Call Interface (OCI) Interview Questions Oracle Call Interface (OCI) (10)
  • Oracle Architecture Interview Questions Oracle Architecture (90)
  • Oracle Security Interview Questions Oracle Security (38)
  • Oracle Forms Reports Interview Questions Oracle Forms Reports (510)
  • Oracle Data Integrator (ODI) Interview Questions Oracle Data Integrator (ODI) (120)
  • Oracle ETL Interview Questions Oracle ETL (15)
  • Oracle RAC Interview Questions Oracle RAC (93)
  • Oracle D2K Interview Questions Oracle D2K (72)
  • Oracle AllOther Interview Questions Oracle AllOther (241)