How can I use UpdateMulti to increase a column's value for each row by a given amount? I understand how to use it to set each row's value to a constant, but I don't see how to use it to assign a value that references another value within the row.
Such as:
UPDATE [Order]
SET Total = Total + 10
WHERE Something > 5
Thanks,
Brian