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

What will be the syntax to find current date and time in format "yyyy-mm-dd"?

0 Answers  


Give the various exception types.

0 Answers  


can u call user defined functions in select statements

2 Answers  


What is the string concatenation operator in oracle?

0 Answers  


What happens to the current transaction if the session is killed?

0 Answers  






How do we know whether an index is created on a table ???

2 Answers   TCS,


ex. one table is having 1 column with 10 records , then how to display all the values in row wise ?

4 Answers  


how to insert data into partitioned table partition done by Range partition

1 Answers  


What is SQL Tuning Advisor in Oracle?

0 Answers   MCN Solutions,


what is IDE,DMV in sql server?

0 Answers  


what is the syntax of SELECT command?

6 Answers  


SELECT THE RECORDS FROM 3 TABLES LIKE(T1,T2,T3) AND HOW CAN WE INSERT THAT RECORD IN ANOTHER TABLE LIKE(T4)?

1 Answers   ESS,


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)