--- between  

The keyword `between' is used to specify conditions 
   in a `where' clause.  It means just what you'd expect -
   select the record if the value of the field is between
   the two values specified.

EXAMPLE:

	  sql> where dept_no between 10 and 50

	  sql> where salary*12 between min_amount and max_amount
