トークンに特定の分類がある確率を返すクエリがあります。SQLiteでグループ内の行を掛ける
token class probPaired
---------- ---------- ----------
potato A 0.5
potato B 0.5
potato C 1.0
potato D 0.5
time A 0.5
time B 1.0
time C 0.5
class
の確率をまとめて掛け合わせる必要があります。
-- Imaginary MUL operator
select class, MUL(probPaired) from myTable group by class;
class probability
---------- ----------
A 0.25
B 0.5
C 0.5
D 0.5
SQLiteでこれを行うにはどうすればよいですか? SQLiteは、LOG
/EXP
や変数 - ソリューションmentioned in other questionsのような機能を持っていません。
@GurVこれらの答えは、回避策を実装するために、[それはLOGやEXPを欠い](https://sqlite.org/lang_corefunc.html)、SQLiteのには適用されません。 – Schwern