mirror of
https://github.com/qgis/QGIS.git
synced 2025-10-15 00:02:52 -04:00
19 lines
537 B
Plaintext
19 lines
537 B
Plaintext
{
|
|
"name": "BETWEEN",
|
|
"type": "operator",
|
|
"groups": ["Operators"],
|
|
"description": "Returns TRUE if value is within the specified range. The range is considered inclusive of the bounds. To test for exclusion `NOT BETWEEN` can be used.",
|
|
"arguments": [{
|
|
"arg": "lower_bound AND higher_bound",
|
|
"description": "range bounds"
|
|
}],
|
|
"examples": [{
|
|
"expression": "'B' BETWEEN 'A' AND 'C'",
|
|
"returns": "TRUE"
|
|
}, {
|
|
"expression": "2 BETWEEN 1 AND 3",
|
|
"returns": "TRUE"
|
|
}],
|
|
"tags": ["contained", "found"]
|
|
}
|