1

単純な線形回帰をテストして、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     |
--    +----------+--------+----------+
4

2 に答える 2

5

ケースの構文が正しくないと思います。

次のようにします。

SELECT last_name, commission_pct,
  (CASE commission_pct 
    WHEN 0.1 THEN ‘Low’ 
    WHEN 0.15 THEN ‘Average’
    WHEN 0.2 THEN ‘High’ 
    ELSE ‘N/A’ 
  END ) Commission
FROM employees ORDER BY last_name; 
于 2009-08-07T05:07:59.387 に答える
1

case ステートメントで両方の括弧を削除してみてください。それらは必要ありません。

かもね:

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 
于 2009-08-07T05:06:53.540 に答える