MySQL Tutorial/Miscellaneous Functions/DEFAULT
Версия от 13:44, 26 мая 2010; (обсуждение)
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;