Subject Case vs. update
Author semprolbat
Hi.

Does case work in update statements, and if not, is this feature
planned?

update
tablea
case
when (a-b >= 0) then set a = a-b, b = 0
else set a = 0, b = -(a-b)
where
(a > 0) and (b > 0)
;

or the like...