10. Display the client number, order date and shipping date
for all orders where the shipping date is between three and
six months after the order date.
Answers were Sorted based on User's Feedback
Answer / subhajit acharyya
select clientnumber,ordate,shipping date from order where
months_between(shipping date,ordate) between 3 and 6;
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / devraj
Select custid, ordid, shipdate From ord Where (shipdate -
orderdate) Between 3 And 6;
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / mk
elect clientnumber,ordate,shipping date from order where
datediff(mm,Orderdate,Shipping date) In (3,6);
| Is This Answer Correct ? | 0 Yes | 0 No |
How to synchronize 2 schema's objects?
Table Has C1 And C2 Column If Exits any record in c1 then Update c2 record Otherwise insert new record in the C1 And C2 (Using Procedure)
In oracle there is column command, how will you explain that?
Can a property clause itself be based on a property clause ?
What are the execution control statements?
What is the effect of setting the value "ALL_ROWS" for OPTIMIZER_GOAL parameter of the ALTER SESSION command ?
Difference between the “verify” and “feedback” command?
26. Display the earliest shipping date in the format: DD/MON/YYYY
What is difference between a formal and an actual parameter?
What is the recommended interval at which to run statspack snapshots, and why?
What are the basic element of Base configuration of an oracle Database ?
How to use like conditions in oracle?