MySQL Tutorial/Miscellaneous Functions/DEFAULT
DEFAULT(col_name)
Returns the default value for a table column.
UPDATE t SET i = DEFAULT(i)+1 WHERE id < 100;
Returns the default value for a table column.
UPDATE t SET i = DEFAULT(i)+1 WHERE id < 100;