ALTER TABLE Employees
ADD StartingDate date NOT NULL DEFAULT GetDate(),
DateOfBirth date NULL
The above statement would add columns named StartingDate
which cannot be NULL with default value as current date and DateOfBirth
which can be NULL in Employees table.