📚 Practice Mode

IMS Database Programming and Oracle Architecture

Learn at your own pace with hints and detailed explanations

1 / 20
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