I know the column for doing the reverse process (nullable to nonnullable) is
ALTER TABLE [Course_Enrollment] ALTER COLUMN [enrollment_date] DATETIME NOT NULL
But what about going from nonnullable to nullable? (I don’t want to mess things up, by removing the NOT from the above SQL and therefore I might risk changing the default value to NULL.)
This is correct as you assumed:
In a nullable column the default is in fact
NULLunless you specify otherwise.