私は異なる人の重みを持っています。MySQL:標準偏差を計算する正しい方法
平均である:
select avg(weight) as avg_weight
from table;
しかしstddev()
とstd()
の違いは何ですか? avg_weightからの標準偏差を得ることは可能ですか?
select stddev(weight)
from table; /* -> is here where the function avg(weight) included? */
または私はこのような何か必要です:
select stddev(avg(weight))
from table; /* (but this does not work) */
感謝を
は、これは正しい方法です。
この質問c ouldにはあまりにも多くの答えがあります。なぜあなたはここからそれを読まないのですか:http:// www。mysqltutorial.org/mysql-standard-deviation/ – CodeLikeBeaker
これが正しいかどうかを教えてください。 テーブルからstddev(weight)を選択してください。 – Melisa