Using NULL is preferable, for two reasons:
NULLis used to mean that the field has no value, which is exactly what you’re trying to model.- If you decide to add some referential integrity constraints in the future, you will have to use
NULL.
Using NULL is preferable, for two reasons:
NULL is used to mean that the field has no value, which is exactly what you’re trying to model.NULL.