Abstract:
It is common practice in MySQL table design that fields are declared as NOT NULL
but some non-sense DEFAULT
values are specified for unknown field contents. In this article we show why this behavior is non optimal an why you should better declare a field to allow NULL
values and use NULL
values instead of some dummy values.