Constructs a horizontal vector (a single row). ARRAY_ROW is the functional equivalent of comma separation within an array literal {}.

ARRAY_ROW(1, 2, 3)  =  {1, 2, 3}

Sample Usage

ARRAY_ROW(1, 2, A1)

Syntax

ARRAY_ROW(value1, [value2, ...])
  • value1 - The first value in the row.
  • value2, ... - [ OPTIONAL ] - Additional values to add to the row.

Notes

  • Each value must either be a scalar type or a vertical vector.
  • ARRAY_ROW is locale-dependent in the same way as array literals. See ARRAY_LITERAL for details.

See Also