if your field in mySQL is set to lets says
number integer(3) NOT NULL DEFAULT '000'
then using php, you can do:
$result = MYSQL_QUERY(UPDATE $user_table SET number="");
that will always create an entry with the DEFAULT value.
hope this is what you are looking for.