# VAR\_POP

Returns the population variance of a numerical column.

## Signatures

`VAR_POP(col1) -> double`

## Usage Examples

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

```sql
SELECT VAR_POP(numberOfGames) AS variance 
FROM baseballStats
```
