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 :

  1. select col1 from table_a where col1 > 0 and col1 <11
  2. select col1 from table_a where col1 >= 0 and col1 <11
  3. select col1 from table_a where col1 >= 0 and col1 <= 11
  4. select col1 from table_a where col1 > 0 and col1 < =11
Change Mode