is there a way to programatically increment the value of a field in a table or do we have to grab the value, save the old value as a variable, assign it the new value (var += 1) and update the variable?
TL;DR
Developers are inquiring about how to programatically increment the value of a field in a table. The solution suggested is to retrieve the current value, store it as a variable, increment the variable by one, and then update the field with the new value.