Informatics Practices
Write a command to add a NOT NULL constraint on FEES column of a student table.
SQL Queries
2 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.
2 Likes
ALTER TABLE student
MODIFY COLUMN FEES INT NOT NULL;
Answered By
1 Like