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.
Answer Posted / 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 |
Post New Answer View All Answers
How do I use os authentication with weblogic jdriver for oracle and connection pools?
What are the types of partitions in oracle?
Why is oracle used?
What are the differences between lov and list item?
What are operators in oracle?
How to define an oracle sub procedure?
while i take backup using ibm tsm the following errors occurred: rman-03009 ora-19513 ora-27206 ora-19502 ora-27030 ora-ora19511
How are extents allocated to a segment?
What is a dynamic performance view in oracle?
What is the purpose of tables, private synonyms and public synonyms in Oracle?
How to drop an index?
How can we find out the current date and time in oracle?
Please explain oracle left join with an example?
Can we use bind variables in oracle stored procedure?
What is a proxy object?