in current sceniriao we are writing case statment like
currently
case [expression]
when column_1= condition then true
else false end
is it possible to write below syntex
case [expression]
when (column_1,column_2) =(condition_1,condition_1) then true
else false end