I know I can easily do this with a few lines of PHP but I was hoping there was a method in MYSQL to do this; I would think there is but I am not having any luck finding it.
Basically I want to do this:
UPDATE fieldName SET status='1'
if status='1', SET status='2'
So that second line is obviously not real code, but that is what I want to do. UPDATE a field to a value, and if that field already equals that value update it to a different value.