The default value is used when you omit the field in the insert, and not when you include the field with a null value.
Example:
Used by default for Name:
insert into SomeTable (Id) values (42)
Tries to paste nullinto Name:
insert into SomeTable (Id, Name) values (42, null)
Guffa source
share