arrayConcatDouble
This section contains reference documentation for the arrayConcatDouble function.
Was this helpful?
This section contains reference documentation for the arrayConcatDouble function.
Concatenates two arrays of doubles.
arrayConcatDouble('colName1', 'colName2')
This example assumes the multiValueTable columns mvCol1 and mvCol2 are both of type DOUBLE with singleValueField in the table schema set to false.
select mvCol1,
arrayConcatDouble(mvCol1, mvCol2) AS concatDoubles
from multiValueTable
WHERE arraylength(mvCol1) >= 2
limit 5Was this helpful?
Was this helpful?

