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



10. Display the client number, order date and shipping date for all orders where the shipping date ..

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

10. Display the client number, order date and shipping date for all orders where the shipping date ..

Answer / devraj

Select custid, ordid, shipdate From ord Where (shipdate -
orderdate) Between 3 And 6;

Is This Answer Correct ?    1 Yes 1 No

10. Display the client number, order date and shipping date for all orders where the shipping date ..

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

Post New Answer

More Oracle General Interview Questions

How to export data to a csv file?

0 Answers  


What are the components of Logical database structure of ORACLE database?

4 Answers  


Can we call procedure inside function in oracle?

0 Answers  


what are stored procedures?

7 Answers   TCS, Wells Fargo,


What is the difference between a vector and an Array? (Java)

3 Answers   RBS,






What happens in oracle commit?

0 Answers  


How to drop a stored function?

0 Answers  


can you explain performance tunning in oracle(sql,PL/SQL)

2 Answers  


Query to get max and second max in oracle in one query ?

34 Answers   CTS, Keane India Ltd, TCS, Wipro,


How to create a table interactively?

0 Answers  


What do you understand by a database object? Can you list a few of them?

0 Answers  


Does a Before form trigger fire when the parameter form is suppressed ?

1 Answers   Oracle,


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)