I came across an old table today with a datetime column called \'Created\' which allows nulls. Now, I\'d want to change this so that it is NOT NULL, and also include a constrai
Try this
ALTER TABLE table_name ALTER COLUMN col_name data_type NOT NULL;