Add Columns
suggest changeALTER 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.
Found a mistake? Have a question or improvement idea?
Let me know.
Table Of Contents