Remove Not Null Constraint From A Column
alter table books
alter column publication_date
set not null;alter table books
alter column publication_date
drop not null;... ALTER [ COLUMN ] column_name { SET | DROP } NOT NULLLast updated
alter table books
alter column publication_date
set not null;alter table books
alter column publication_date
drop not null;... ALTER [ COLUMN ] column_name { SET | DROP } NOT NULLLast updated