単純な線形回帰をテストして、2 セットの体重測定値の間で最適な線を取得するためのクエリを作成しました。うまくいけば、以下のような結果が返されるはずですが、奇妙なエラーがスローされます
「ORA-00907 右括弧がありません」
TOAD は次の部分を指しています。
case ( when trn.wid_location = 28.3 then
かっこの欠落を調べてきましたが、ケースステートメントを次のように置き換えると、それが問題になるとは思いません
100 as mine,
エラーが消え、クエリが実行されます。
何かご意見は?
乾杯、
トミー
select
decode(wid_location,28.3,'CL',29.6,'DA') as site,
(n*sum_xy - sum_x*sum_y)/(n*sum_x_sq - sum_x*sum_x) as m,
(sum_y - ((n*sum_xy - sum_x*sum_y)/(n*sum_x_sq - sum_x*sum_x))*sum_x)/n as b
from (
select
wid_location,
sum(wids) as sum_x,
sum(mine) as sum_y,
sum(wids*mine) as sum_xy,
sum(wids*wids) as sum_x_sq,
count(*) as n
from (
select
trn.wid_location,
con.empty_weight_total as wids,
case (
when trn.wid_location = 28.3 then con.empty_weight_total*0.900-1.0
when trn.wid_location = 29.6 then con.empty_weight_total*0.950-1.5
end
) as mine
from widsys.train trn
inner join widsys.consist con
using (train_record_id)
where mine_code = 'YA'
and to_char(trn.wid_date,'IYYY') = 2009
and to_char(trn.wid_date,'IW') = 29
)
group by wid_location
)
そして、これが私が見てうれしい結果です
-- +----------+--------+----------+
-- | SITE | M | B |
-- +----------+--------+----------+
-- | CL | 0.900 | -1.0 |
-- +----------+--------+----------+
-- | DA | 0.950 | -1.5 |
-- +----------+--------+----------+