mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-16 00:03:12 -04:00
14 lines
259 B
Plaintext
14 lines
259 B
Plaintext
<h3>IN expression</h3>
|
|
Returns 1 if value is found within a list of values
|
|
|
|
<h4>Syntax</h4>
|
|
<pre>'a' IN ('a', 'b')</pre>
|
|
|
|
<h4>Arguments</h4>
|
|
None
|
|
|
|
<h4>Example</h4>
|
|
<pre> 'A' IN ('A','B") → returns 1 </pre>
|
|
<pre> 'A' IN ('C','B") → returns 0 </pre>
|
|
|