# Arrays

#### Create an array field

You can create array fields using the `..[]` syntax:

```sql
CREATE TABLE table(
    _key INT,
    , fialdA INT[]            -- Simple array
    , fieldB.fieldC STRING[]) -- Array in a subfield
    , fieldD INT[][]          -- Nested array
FORMAT(avro, avro);
```

#### Select an array field

Tables can store data containing arrays. Here is a SQL statement for querying an array item:

```sql
SELECT
    fieldA[1]
     , fieldB.fieldC[2].x
FROM table
WHERE fieldA[1] LIKE '%Lenses%'
```

When working with arrays is good to check the array bounds. See the `SIZEOF` function in the list of supported functions.

#### Query for array size

Sometimes you want to find out how many items are in your array. To do so you can run:

{% code overflow="wrap" %}

```sql
SELECT
    SIZEOF(arrayFieldA)
FROM table
```

{% endcode %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.lenses.io/latest/user-guide/using/using-sql-to-query-kafka/arrays.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
