当我尝试在 C# 中执行以下代码时,出现错误STDDEV is not a recognized built-in function name
select gender
, avg(value)
, stddev(value)
from YourTable
group by
gender
当我尝试在 C# 中执行以下代码时,出现错误STDDEV is not a recognized built-in function name
select gender
, avg(value)
, stddev(value)
from YourTable
group by
gender
You probably mean stdev, if you're using MS SQL
You misspelled Standard Deviation function.
Standard Deviation is STDEV()