Add a constraint (NN-Grade) in table Empl that declares column Grade not null.
ALTER TABLE Empl ADD CONSTRAINT NN_Grade (Grade NOT NULL) ;