こんにちは私はDB2でCASEステートメントを選択しました:
case when actualfinish is not null then dec (( timestampdiff(
4,
char(actualfinish - reportdate))/60.00),10,2)
else 'not'
end
エラーが返されます。ELSE部分を削除してもエラーはなく、計算は行われます。
case when actualfinish is not null then dec (( timestampdiff(
4,
char(actualfinish - reportdate))/60.00),10,2)
end
THENの部分を次のようなものに変更すると
case when actualfinish is not null then 'Yes'
else 'not'
end
また、エラーはありません。
しかし、私の完全なSQLクエリでは、エラーを見つけることができません。ありがとう