screnshaw
05/24/2022, 7:15 PMcase when {orderallocationstrategy.id} in (null, 2,3,4,5,-3) then 1 else 0 end
ehcanadian
05/24/2022, 7:23 PMcase when NVL({orderallocationstrategy.id},0) in (0, 2,3,4,5,-3) then 1 else 0 end
screnshaw
05/24/2022, 7:41 PM