にケースを使用しているとき、私はcase
where
で句を使用しますが、エラーを取得しています:missing keyword
Where句
SQL:
SELECT *
FROM tmp t
WHERE
CASE :p_flag WHEN 'Y'
THEN t.call_destination NOT IN ('Premium', 'Satellite')
ELSE t.call_destination LIKE call_destination
END;
'ELSE t.call_destination LIKE call_destination' ...これは意味をなさない。実際のelseロジックは何ですか? –