DEFAULT Constraints

To supply a value (when a user does not enter one in a column), define a DEFAULT constraint or a default on the column. DEFAULT constraints are defined with the CREATE TABLE or ALTER TABLE statement. Defaults are created with the CREATE DEFAULT statement and bound with the sp_bindefault system stored procedure. Unlike defaults, DEFAULT constraints do not need a separate binding step.

When you insert a row with the INSERT statement, you can specify default values for one or all columns in the row by using the DEFAULT or DEFAULT VALUES options.

    To create a DEFAULT constraint

Or

For details on INSERT, see the INSERT statement in the Microsoft SQL Server Transact-SQL Reference.