IMS Database Programming and Oracle Architecture
Casual Mode - Take your time!
1 / 20
Correct
0
Incorrect
0
Score
0%
Multiple Choice
select col1 from table_a where col1 between 0 and 11 is same as :
- select col1 from table_a where col1 > 0 and col1 <11
- select col1 from table_a where col1 >= 0 and col1 <11
- select col1 from table_a where col1 >= 0 and col1 <= 11
- select col1 from table_a where col1 > 0 and col1 < =11