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

why pl sql doesn't support retrieving multiple records

1 Answers   Mphasis,


what is Materialized view? What is a snapshot? what are the similarities and differences between Materialized views and snapshots?

2 Answers  


How to write a query with a left outer join in oracle?

0 Answers  


What are the different windows events activated at runtime ?

0 Answers   Oracle,


Other than making use of the statspack utility, what would you check when you are monitoring or running a health check on an Oracle 8i or 9i database?

0 Answers  






Explain the different normalization forms?

0 Answers  


Explain an index segment?

0 Answers  


What is oracle in java?

0 Answers  


Anyone have the Latest Oracle Dumbs?While u have please forard to narain1411@gmail.com

0 Answers  


Explain the use of indexes option in imp command.

0 Answers  


Why does for update in oracle 8 cause an ora-01002 error?

0 Answers  


What are the sql clauses supported in the link property sheet ?

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)