ステートメントのセクションで使用する方法or
?when
case
DECLARE @TestVal INT
SET @TestVal = 1
SELECT
CASE @TestVal
WHEN 1 THEN 'First'--- this line
WHEN 2 THEN 'First'--- and this line
WHEN 3 THEN 'Third'
ELSE 'Other'
END
上記の2行を使用する代わりに、次のようなものを使用したい:
when 1 or 2 then 'First'