Computer Science, asked by kkmayuresh7, 7 hours ago

What the Query!
MCQ
DESCRIPTION
What SQL command will allow you to change the table STUDENT
to add the constraint named GradeCheck that states that the
values of the Grade column must be greater than 0?​

Answers

Answered by farooqhafsa75
1

Answer:

ALTER TABLE STUDENT ADD CONSTRAINT GradeCheck (Grade > 0)

Similar questions