- Overview
- Data types
- Commands
- Functions
- Overview
- Aggregate
- Conditional expression
- Conversion
- Date and time
- Numeric
- String
- Semi-structured data
On this page
append
Returns an array containing all elements from the source array as well as the new element. The new element is located at the end of the array.
Syntax
append( <array> , <new_element> )
Arguments
<array>
The source array.
<new_element>
The element to be appended.
The element can be of any data type. The data type can be different from the data type(s) of the existing elements in the array.
Returns
The data type of the returned value is ARRAY.