mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05: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>
|
|
|