mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
28 lines
777 B
Plaintext
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"]
|
|
}
|