SQL Constraints
Not Null
If we specify a field in a table to be NOT NULL, then the field will never accept a null value. You will be not allowed to insert a new row in the table without specifying a value to this field.
create table
students (
student_id int(6...
davidferrol.hashnode.dev2 min read