Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
C# でデータベースからデータを取得した後、標準偏差を実装する必要があります。
income性別が次のいずれかでmaleあるフィールド名から一連の値を取得する必要がありますfemale
income
male
female
標準偏差を直接計算する SQL コマンドはありますか? または、C#を使用して個別に計算する必要がありますか?
STDEV集計関数を試してください:
STDEV
select gender , avg(value) , STDEV(value) from YourTable group by gender