between method
Row value of column is within the inclusive low to and range,
lexicographically.
Implementation
SQL between(ColumnOr<V> low, {required ColumnOr<V> and}) => SQL([
this,
const RawSQL('BETWEEN'),
operand(low),
const RawSQL('AND'),
operand(and),
]);