Rows
Here's an overview of working with ROW
types in FeatureQL.
You can see the full list of row functions in the Functions page.
Row literals
Rows are ordered collections that can hold values of different types.
Create rows using the ROW()
syntax:
- If no field name is provided, fields are named
field_<position>
(likefield_1
,field_2
,field_3
, etc.) - If a field name is provided, that name is used. Names must be unique.
Row functions
Accessing row elements
You can access row elements using array-like indexing or field extraction. The EXTRACT function supports several patterns for accessing multiple fields.
On this page