Storage Size in MySQL NULL

Let's say I have a column that is not defined as NOT NULL, which means that a particular column can be null. If I insert a row with a null record for this field, how many bytes are required to store this record?

In more general terms, if a table contains a lot of NULL entries, does it waste storage space?

+3
source share
1 answer

Here is the link that answers your question. Zero in mysql

+2
source

All Articles