STDDEV
Returns the population standard deviation. Alias for STDDEV_POP.
Analyze Syntax
func.stddev(get_column(table, 'score'))
Analyze Examples
func.stddev(get_column(table, 'score'))
┌───────┐
│ 15.32 │
└───────┘
SQL Syntax
STDDEV(<score>)
SQL Examples
SELECT STDDEV(score) FROM test_results;
┌───────┐
│ 15.32 │
└───────┘