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

What is an oracle table?

0 Answers  


How to set up autotrace for a user account?

0 Answers  


what are different types of deletes?

1 Answers  


What is the difference between count (*), count (expression), count (distinct expression)?

0 Answers  


How to check database size in Oracle?

0 Answers   MCN Solutions,






5. Display full details from the ORDER_LINE table where the item number is (first condition) between 1 and 200 (no > or < operators) OR the item number is greater than 1000 AND (second condition) the item cost is not in the list 1000, 2000, 3000 OR the order number is not equal to 1000.

3 Answers   Wipro,


How to calculate date and time differences in oracle?

0 Answers  


Is oracle an open source?

0 Answers  


defination of bitmap index

0 Answers   NIIT,


State and explain the different types of data models?

0 Answers  


What is meant by recursive hints in oracle?

0 Answers  


What is an UTL_FILE.What are different procedures and functions associated with it?

1 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)