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

