DB_Column.between
betweenlowerupper
Group: Logical
Documentation
Element-wise inclusive bounds check.
Returns a column with boolean values indicating whether values of this column fit between the lower and upper bounds (both ends inclusive).
Arguments
lower
: The lower bound to compare elements ofself
against. Iflower
is a column, the comparison is performed pairwise between corresponding elements ofself
andlower
.upper
: The upper bound to compare elements ofself
against. Ifupper
is a column, the comparison is performed pairwise between corresponding elements ofself
andupper
.