Harrissou Sant-anna 42181ab68b
Add examples to NOT BETWEEN function
showcasing equality with bounds value as well as case-sensitivity
2022-06-27 13:15:00 +02:00

28 lines
777 B
Plaintext

{
"name": "NOT BETWEEN",
"type": "operator",
"groups": ["Operators"],
"description": "Returns TRUE if value is not within the specified range. The range is considered inclusive of the bounds.",
"arguments": [{
"arg": "lower_bound AND higher_bound",
"description": "range bounds"
}],
"examples": [{
"expression": "'B' NOT BETWEEN 'A' AND 'C'",
"returns": "FALSE"
}, {
"expression": "1.0 NOT BETWEEN 1.1 AND 1.2",
"returns": "TRUE"
}, {
"expression": "2 NOT BETWEEN 2 AND 3",
"returns": "FALSE"
}, {
"expression": "'B' NOT BETWEEN 'a' AND 'c'",
"returns": "TRUE"
}, {
"expression": "lower('B') NOT BETWEEN 'a' AND 'b'",
"returns": "FALSE"
}],
"tags": ["bound", "contained", "exclude", "found", "range"]
}