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