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
Write one similarity and one difference between CHAR and VARCHAR data types.
Write SQL statement to display
Today, the date is <current date>
What is a constraint ? Name some constraints that you can apply to enhance database integrity.
What is primary key ? What is PRIMARY KEY constraint ?