A family of Microsoft relational database management systems designed for ease of use.
The Default value will only be applied to newly entered records - not to records already in the table. If zero is an appropriate default value, you could set the Default Value property for future records, and run an update query like
UPDATE mytable
SET [Amount 2] = 0
WHERE [Amount 2] IS NULL;
Back up your database first of course!