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
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 |
Answer / vijayaragavan
select clientnum, max(high_value_order) from ordertab group
by clientnum;
| Is This Answer Correct ? | 1 Yes | 0 No |
Draw E-R diagram for many to many relationship ?
SQLERRM is a a. Constraint b. Pre Defined Exception c. Pseduocolumn d. Constant e. None of Above.
Why do you use stored procedures and state some of its disadvantages?
how to join query for one source type is oracle another source type is sql server ?
What is difference between SUBSTR and INSTR?
Use of an integrity constraint is better to validate data. Explain
How do I limit the number of oracle database connections generated by weblogic server?
What are temporal data types in oracle?
How to export your connection information to a file?
21. Using a set operator, display the client number of all clients who have ever placed an order and whose whose name does not contain the string Sm.
I have a parent program and a child program. I want to write a statement in Exception Block of the parent program so that when the statement in the exception block is executed, the control goes to the next statement in the parent block bypassing the child block.How do i do that?
what is shell?