is there a way to increment a cell instead of read...
# javascript
g
is there a way to increment a cell instead of reading it, incrementing it and writing it again?
j
You could just UPDATE table set counter = counter + 1 WHERE id = someid;
g
Ok