Data Engineering Integration
- Data Engineering Integration 10.2.2
- All Products
Complex Operators
| Description
|
---|---|
[]
| Subscript operator. Use to access array and map elements.
Syntax:
array [index ]
For example, use [0] to access the first element in an one-dimensional array.
Syntax:
map [key ]
|
.
| Dot operator. Use to access struct elements.
Syntax:
struct .element_name
|
quarterly_sales[0] quarterly_sales[1] quarterly_sales[2] quarterly_sales[3]
address.city address.state address.zip