Database Redesign
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?

ALTER TABLE STUDENT ALTER CONSTRAINT GradeCheck (Grade > 0);
ALTER TABLE STUDENT ADD CONSTRAINT GradeCheck (Grade > 0);
ALTER TABLE STUDENT ADD CONSTRAINT GradeCheck CHECK (Grade > 0);
None of these

ANSWER DOWNLOAD EXAMIANS APP

Database Redesign
The EXISTS keyword will be true if:

any row in the subquery meets the condition only.
neither of these two conditions is met.
both of these two conditions are met.
all rows in the subquery fail the condition only.

ANSWER DOWNLOAD EXAMIANS APP