CBSE Class 12 Computer Science Question 62 of 79

Table Creation and Data Manipulation Commands — Question 8

Back to all questions
8
Question

Question 8

Modify table Empl, add another column called Grade of VARCHAR type, size 1 into it.

Answer
ALTER TABLE Empl
ADD (Grade VARCHAR(1)) ;