mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-14 00:07:35 -04:00
added english coalesce() function help
This commit is contained in:
parent
68cfb6c8ef
commit
89811ae0c1
19
resources/function_help/coalesce-en_US
Normal file
19
resources/function_help/coalesce-en_US
Normal file
@ -0,0 +1,19 @@
|
||||
<h3>coalesce() function</h3>
|
||||
Returns the first non-NULL value from the expression list.
|
||||
<br>
|
||||
This function can take any number of arguments.
|
||||
<h4>Syntax</h4>
|
||||
<code>coalesce(expression1, expression2 ...)</code><br>
|
||||
|
||||
<h4>Arguments</h4>
|
||||
<code>expression</code> - any valid expression or value, irregardless of type.
|
||||
<br>
|
||||
|
||||
<h4>Example</h4>
|
||||
<!-- Show example of function.-->
|
||||
<code>coalesce(NULL, 2) → 2</code><br>
|
||||
<code>coalesce(NULL, 2, 3) → 2</code><br>
|
||||
<code>coalesce(7, NULL, 3*2) → 7</code><br><br>
|
||||
<code>coalesce("fieldA", "fallbackField", 'ERROR') → value of fieldA if it is non-NULL
|
||||
else the value of "fallbackField" or the string 'ERROR' if both are NULL</code><br>
|
||||
|
Loading…
x
Reference in New Issue
Block a user