What happens if primary key is null?
NULL values are not allowed. If the column(s) contain NULL values, the system will not add the primary key constraint. Why should a primary key not be NULL? If two records of a single column have a NULL value, the column values are not considered equal. In simple words two NULL values are not considered as equal. This is the …