File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -9649,11 +9649,13 @@ <h5>GroupConcat</h5>
9649
9649
SEPARATOR.</p>
9650
9650
<div class="defn">
9651
9651
<p><b>Definition: <span id="defn_aggGroupConcat">GroupConcat</span></b></p>
9652
- <pre class="code nohighlight">literal GroupConcat(sequence S)</pre>
9653
- <p>If the "separator" scalar argument is absent from GROUP_CONCAT then it is taken to
9654
- be the "space" character, unicode codepoint U+0020.</p>
9652
+ <pre class="code nohighlight">literal GroupConcat(sequence S, function scalarvals)</pre>
9653
+ <p>If the scalarvals argument is absent from GROUP_CONCAT, then scalarvals is taken to
9654
+ be the empty function.</p>
9655
+ <p>|separator| = scalarvals("separator") if scalarvals is defined for the argument "separator"</p>
9656
+ <p>|separator| = the "space" character, unicode codepoint U+0020, if scalarvals is undefined for the argument "separator"</p>
9655
9657
<p>L = Flatten(S)</p>
9656
- <p>GroupConcat(S, scalarvals) = GroupConcat(L, scalarvals(" separator") )</p>
9658
+ <p>GroupConcat(S, scalarvals) = GroupConcat(L, | separator| )</p>
9657
9659
<p>GroupConcat(L, sep) = "" if <a href="#defn_Card">Card</a>(L) = 0</p>
9658
9660
<p>GroupConcat(L, sep) = CONCAT("", L<sub>0</sub>) if
9659
9661
<a href="#defn_Card">Card</a>(L) = 1</p>
You can’t perform that action at this time.
0 commit comments