The transformation of the BETWEEN operator requires the helper function BetweenFunc.
Last updated 1 year ago
You might also be interested in
var BetweenFunc = function (expression,startExpr,endExpr) { if ([expression,startExpr,endExpr].some((arg) => arg == null)) { return null; } return expression >= startExpr && expression <= endExpr; };