私はテーブルを持っています:
Bonus Value
500 1400
1500 177
1800 453
1200 100
800 2500
200 50
780 740
最大の列の合計を出力したかったのです。
私は以下を試しました:
select
case when sum(bonus)>sum(Value) then sum(bonus) end
case when sum(Value)>sum(bonus) then sum(Value) end
from emp
しかし、私は結果を得ていませんでした。
エラー:
Msg 156, Level 15, State 1, Line 3
Incorrect syntax near the keyword 'case'.