Is it possible to upgrade a bool field by telling it to update the field to the opposite of what it is without having to select the value - check it then update accordingly
use NOT
NOT
UPDATE `table` SET `my_bool` = NOT my_bool
UPDATE `Table` SET `my_bool` = 1 ^ `my_bool`