Hello - I would like to write the following case statement using PL/SQL. Is it possible?
Case v_code
when in ('SIT','MOV','TST') then....
I can resort to
Case
when v_code in ('SIT','MOV','TST') then.... , but I thought the 1st option would be cleaner if there is a way to do it. Thanks!
Case v_code
when in ('SIT','MOV','TST') then....
I can resort to
Case
when v_code in ('SIT','MOV','TST') then.... , but I thought the 1st option would be cleaner if there is a way to do it. Thanks!