mirror of
https://github.com/qgis/QGIS.git
synced 2025-10-16 00:05:45 -04:00
new help texts for operators
This commit is contained in:
parent
6ec9e75ca1
commit
1670a27423
13
resources/function_help/AND
Normal file
13
resources/function_help/AND
Normal file
@ -0,0 +1,13 @@
|
||||
<h3>AND logical operator</h3>
|
||||
Returns 1 when condition a and b are true.
|
||||
|
||||
<h4>Syntax</h4>
|
||||
<pre> condition a AND condition b </pre>
|
||||
|
||||
<h4>Arguments</h4>
|
||||
None
|
||||
|
||||
<h4>Example</h4>
|
||||
<pre> 4 = 2+2 AND 1 = 1 → returns 1 </pre>
|
||||
<pre> 4 = 2+2 AND 1 = 2 → returns 0 </pre>
|
||||
|
13
resources/function_help/ILIKE
Normal file
13
resources/function_help/ILIKE
Normal file
@ -0,0 +1,13 @@
|
||||
<h3>LIKE expression</h3>
|
||||
Returns 1 if the first parameter matches case-insensitive the supplied pattern. ILIKE can be used instead of LIKE to make the match case-insensitive. Works with numbers also.
|
||||
|
||||
<h4>Syntax</h4>
|
||||
<pre>string/number LIKE pattern</pre>
|
||||
|
||||
<h4>Arguments</h4>
|
||||
None
|
||||
|
||||
<h4>Example</h4>
|
||||
<pre> 'A' ILIKE 'A' → returns 1 </pre>
|
||||
<pre> 'A' ILIKE 'a' → returns 1 </pre>
|
||||
<pre> 'A' ILIKE 'B' → returns 0 </pre>
|
18
resources/function_help/IS
Normal file
18
resources/function_help/IS
Normal file
@ -0,0 +1,18 @@
|
||||
<h3>IS expression</h3>
|
||||
Returns 1 if a is the same as b.
|
||||
|
||||
<h4>Syntax</h4>
|
||||
<pre>a is b</pre>
|
||||
|
||||
<h4>Arguments</h4>
|
||||
None
|
||||
|
||||
<h4>Example</h4>
|
||||
<pre> 'A' IS 'A' → returns 1 </pre>
|
||||
<pre> 'A' IS 'a' → returns 0 </pre>
|
||||
<pre> 4 IS 4 → returns 1 </pre>
|
||||
<pre> 4 IS 2+2 → returns 1 </pre>
|
||||
<pre> 4 IS 2 → returns 0 </pre>
|
||||
<pre> 4 IS 2 → returns 0 </pre>
|
||||
<pre> $geometry IS NULL → returns 0, if your geometry is not NULL</pre>
|
||||
|
13
resources/function_help/LIKE
Normal file
13
resources/function_help/LIKE
Normal file
@ -0,0 +1,13 @@
|
||||
<h3>LIKE expression</h3>
|
||||
Returns 1 if the first parameter matches the supplied pattern. Works with numbers also.
|
||||
|
||||
<h4>Syntax</h4>
|
||||
<pre>string/number LIKE pattern</pre>
|
||||
|
||||
<h4>Arguments</h4>
|
||||
None
|
||||
|
||||
<h4>Example</h4>
|
||||
<pre> 'A' LIKE 'A' → returns 1 </pre>
|
||||
<pre> 'A' LIKE 'a' → returns 0 </pre>
|
||||
<pre> 'A' LIKE 'B' → returns 0 </pre>
|
14
resources/function_help/NOT
Normal file
14
resources/function_help/NOT
Normal file
@ -0,0 +1,14 @@
|
||||
<h3>NOT</h3>
|
||||
Returns 1 if a is not the same as b.
|
||||
|
||||
<h4>Syntax</h4>
|
||||
<pre> a NOT b </pre>
|
||||
|
||||
<h4>Arguments</h4>
|
||||
None
|
||||
|
||||
<h4>Example</h4>
|
||||
<pre> 'a' IS NOT 'b' → returns 1 </pre>
|
||||
<pre> 'a' IS NOT 'a' → returns 0 </pre>
|
||||
<pre> 4 IS NOT 2+2 → returns 0 </pre>
|
||||
|
13
resources/function_help/OR
Normal file
13
resources/function_help/OR
Normal file
@ -0,0 +1,13 @@
|
||||
<h3>OR logical operator</h3>
|
||||
Returns 1 when condition a or b is true.
|
||||
|
||||
<h4>Syntax</h4>
|
||||
<pre> condition a OR condition b </pre>
|
||||
|
||||
<h4>Arguments</h4>
|
||||
None
|
||||
|
||||
<h4>Example</h4>
|
||||
<pre> 4 = 2+2 OR 1 = 1 → returns 1 </pre>
|
||||
<pre> 4 = 2+2 OR 1 = 2 → returns 1 </pre>
|
||||
<pre> 4 = 2 OR 1 = 2 → returns 0 </pre>
|
Loading…
x
Reference in New Issue
Block a user