# STDDEV\_SAMP

Returns the sample standard deviation of a numerical column.

## Signatures

`STDDEV_SAMP(col1) -> double`

## Usage Examples

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

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