# ARRAYLENGTH

Returns the length of a multi-value column

## Signature

> ARRAYLENGTH('colName')

## Usage Examples

These examples are based on the [Hybrid Quick Start](https://docs.pinot.apache.org/release-0.11.0/basics/getting-started/quick-start#hybrid).

```sql
select ARRAYLENGTH(RandomAirports) AS length, count(*) 
from airlineStats 
GROUP BY length
ORDER BY count(*) DESC
LIMIT 5
```

| length | count(\*) |
| ------ | --------- |
| 1      | 5382      |
| 37     | 267       |
| 33     | 223       |
| 17     | 166       |
| 22     | 160       |

{% hint style="info" %}
The `count(*)` values will increase each time we execute the query as data is constantly being ingested by the Hybrid Quick Start.
{% endhint %}


---

# 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.pinot.apache.org/release-0.11.0/configuration-reference/functions/arraylength.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.
