The NOT NULL constraint

The syntax when using the not null constraint in the [[The CREATE statement]]:

CREATE TABLE table_name ( 
column_name data_type NOT NULL,
... 
);

The syntax when using the not null constraint in the [[The ALTER statement]]:

ALTER TABLE table_name 
MODIFY column_name data_type NOT NULL;