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 / 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 |
Post New Answer View All Answers
In XIR2 if we lost the administration password .How can we regain the password?thanks in advance.
what is the dual table in oracle?
What is a initialization parameter file in oracle?
Is there a function to split a string in plsql?
What is the difference between translate and replace in oracle?
How to build data dictionary view an new database?
How to change user password in oracle?
What are the oracle differences between nvl and coalesce
What is the exact use of Collections?
What is the difference between view and materialized view in Oracle?
What are the most common interview questions on ETL Testing for experience?
What is max rowid in oracle?
How to connect to a remote server?
What is recycle bin in Oracle?
Why packages are used in oracle?