Case stud.Status
when 'N'then 'NA'
end
when
上記のステートメントの前に次の条件を追加する方法
IF is not equal to 2.つまり、上記の条件もプラスした場合にのみ@ID
割り当てたいということです。'NA'
id <> 2
編集:完全なクエリ
Case Stud.Status
when @ID = 2 AND Stud.Status = 'N' then 'To Be Submitted'
when 'N'then 'N/A'
else isnull(Stud.Status, '')
end