The last values of your insertion are NULL yet declared as not null in the table creation, hence the error.
If physician_minc is not mandatory then allow it to be NULL in the table creation by replacing physician_minc varchar(20) NOT NULL, into physician_minc varchar(20) NULL,