Is there a way to just increment a value in mysql using some function instead of having to go
value = "Select value from table where blah = blah"
value++;
"update blah from blah where blah = blah"
Ryan K.
UPDATE table SET col1 = col1 + 1 WHERE row_id = 1