Hi,
I'm using Oracle 10g and I'm trying to "stack" the conditions in a CASE statement, like I would do in C++ :
case 1:
case 2:
// instructions
break;
i.e. having the same code block executed for two different successful conditions.
I've tried :
WHEN 1, 2 THEN
WHEN 1 OR 2 THEN
... without luck. Is it even possible ?
Thanks.