# AVGMV

Get the avg of values in a group

## Signature

> AVGMV(colName)

## Usage Examples

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

```sql
select AVGMV(DivLongestGTimes) AS value
from airlineStats 
where arraylength(DivLongestGTimes) > 1
```

| value              |
| ------------------ |
| 18.465753424657535 |
