こんにちは、コードをチェックして、いつ入力または表示されたかを判断する次のクエリがあります。
declare @timestamp datetime;
select
case @timestamp
when a.updatedDate =1760 then 'Entered on' +a.updatedDate
when a.updatedDate=1710 then 'Viewed on' +a.updatedDate
else 'Last Updated on'+ a.updatedDate
end
from t_mainTable a
where a.id=@Id;
このクエリを実行しようとすると、エラーが発生します
Msg 102, Level 15, State 1, Procedure p_xxxx, line 40
Incorrect syntax near '='.
when 行に構文エラーがあります。これを修正する方法を教えてください ありがとう