Informatics Practices
Write a command to add a NOT NULL constraint on FEES column of a student table.
SQL Queries
4 Likes
Answer
ALTER TABLE student
MODIFY COLUMN FEES INT NOT NULL;
Answered By
1 Like
Write a command to add a NOT NULL constraint on FEES column of a student table.
4 Likes
ALTER TABLE student
MODIFY COLUMN FEES INT NOT NULL;
Answered By
1 Like