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 / 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 View All Answers
query optmization techniques and quwry analyser+projects+ppts
What is oracle and what are its different editions?
How can you merge two tables in oracle?
What is ADDM Advisor in Oracle?
what are the default admin accounts in Oracle 10g ?
Is it possible to split the print reviewer into more than one region ?
What is literal?
What would you do with an in-doubt distributed transaction?
What happens if you lost a data file?
What happens if recursive calls get out of control?
What is the parameter mode that can be passed to a procedure?
Please explain oracle data types with examples?
Explain what are clusters?
What is the use of file param in imp command?
How would you go about verifying the network name that the local_listener is currently using?