# STDDEV\_POP

Returns the population standard deviation of a numerical column.

## Signatures

`STDDEV_POP(col1) -> double`

## Usage Examples

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

```sql
SELECT STDDEV_POP(numberOfGames) AS stddev 
FROM baseballStats
```
