Returns the default value for a table column. An error results if the column has no default value.
UPDATE t SET i = DEFAULT(i)+1 WHERE id < 100;
The use of DEFAULT(col_name) to specify the default value for a named column is permitted only for columns that have a literal default value, not for columns that have an expression default value.
UPDATE t SET i = DEFAULT(i)+1 WHERE id < 100;