VAR_SAMP (Lakehouse v2)
Returns the sample variance. Alias for VARIANCE_SAMP.
Analyze Syntax
Section titled “Analyze Syntax”func.var_samp(get_column(table, 'score'))Analyze Examples
Section titled “Analyze Examples”func.var_samp(get_column(table, 'score'))
┌────────┐│ 252.48 │└────────┘SQL Syntax
Section titled “SQL Syntax”VAR_SAMP(<score>)SQL Examples
Section titled “SQL Examples”SELECT VAR_SAMP(score) FROM test_results;
┌────────┐│ 252.48 │└────────┘