STDDEV_POP

Returns the population standard deviation.

Analyze Syntax

func.stddev_pop(get_column(table, 'score'))

Analyze Examples

func.stddev_pop(get_column(table, 'score'))

┌───────┐
 15.32 
└───────┘

SQL Syntax

STDDEV_POP(<score>)

SQL Examples

SELECT STDDEV_POP(score) FROM test_results;

┌───────┐
 15.32 
└───────┘