5. Display full details from the ORDER_LINE table where the
item number is (first condition) between 1 and 200 (no > or
< operators) OR the item number is greater than 1000 AND
(second condition) the item cost is not in the list 1000,
2000, 3000 OR the order number is not equal to 1000.

Answers were Sorted based on User's Feedback



5. Display full details from the ORDER_LINE table where the item number is (first condition) betwee..

Answer / girija.112

select *
from order_line
where item_number between 1 and 200
or item_number > 1000
intersect
select *
from order_line
where order_number not in (1000,2000,3000)
or order_number <> 1000

Is This Answer Correct ?    3 Yes 1 No

5. Display full details from the ORDER_LINE table where the item number is (first condition) betwee..

Answer / murali

select * from order_line where
itemnum between 1 and 200 or itemnum>100
and
cost not in (1000,2000,3000) or ordernum<>1000

Is This Answer Correct ?    1 Yes 1 No

5. Display full details from the ORDER_LINE table where the item number is (first condition) betwee..

Answer / suman rana

select * from order_line
where ( (itemnum between 1 and 200) or itemnum >100)
and not (cost in (1000,2000,3000) or ordernum = 1000)

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Oracle General Interview Questions

Where are the settings stored for each instance in oracle?

0 Answers  


How to download oracle database 10g xe?

0 Answers  


In what script is snap$ created? In what script is the scott/tiger schema created?

0 Answers  


Explain an integrity constrains?

0 Answers  


What is recovery manager in Oracle?

0 Answers   MCN Solutions,






I just want to maintain data like an employee can belongs to 3 or more departments . We can resolve this by using composite key but it avoids normalization rules. So Can anyone tell me how can I maintain data.

0 Answers   IBM,


Can Multiple instances be run on Single Machine???

3 Answers  


how to see the data (in unix) using dataset in datastage?

1 Answers   iGate,


How oracle handles dead locks?

0 Answers  


Is it possible to split the print reviewer into more than one region ?

0 Answers   Oracle,


What is procedure overloading in oracle?

0 Answers  


Explain the statement?? ALTER TABLE TABLE_NAME MOVE; What it the use of above statement??

1 Answers   BirlaSoft,


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)