Type: Function
Function: BETWEEN
Syntax: BETWEEN(number|datetime, start, end)
Description: Returns true if the provided value is between (>= and <=) the start and end values.
Sample usage:
BETWEEN(lines_changed, 100, 1000)returnstrueiflines_change = 500, returnsfalseiflines_change = 1200BETWEEN(created_at, BEGINNING_OF_YEAR, END_OF_YEAR)=> returnstrueif thecreated_atfield value is within the current year.
