CBSE Class 12 Computer Science Question 64 of 79

Table Creation and Data Manipulation Commands — Question 10

Back to all questions
10
Question

Question 10

Add a constraint (NN-Grade) in table Empl that declares column Grade not null.

Answer
ALTER TABLE Empl
ADD CONSTRAINT NN_Grade 
(Grade NOT NULL) ;